Hi Qusai,
Thanks, that screenshot is actually very useful. This does not look like 359 real Google visitors causing the usage.
In the last day, your Firewall shows about 77k allowed requests, and the top AS name is Tencent-related with 44.7k requests. Bot Protection is also inactive and you have 0 custom rules, so right now most of that crawler/scraper traffic is being allowed through to the site.
So yes, adding many pages can explain higher usage, but the bigger issue seems to be bots discovering and crawling those pages.
I’d do two things before deciding that Pro is the solution:
- Turn on protection / filtering first
In the Firewall, I’d start with a rule in Log mode for the obvious suspicious traffic, then change it to Challenge, Deny, or rate limit after you confirm it is not Google/Bing or a service you want.
For example, something like:
If:
AS Name contains Tencent
OR IP is one of the repeated top IPs
OR requests are repeatedly hitting /contact, /founder, /about, /glossary
Then:
Log first
After a short test, if it is clearly unwanted scraping, change the action to Challenge, Deny, or a rate limit. I would not block all bots globally if SEO matters, because you still want legitimate crawlers like Googlebot to reach your public pages.
- Reduce unnecessary ISR work
Your Incremental Static Regeneration number is also high, so check whether your new pages are using a short revalidate, like:
export const revalidate = 60
If these are glossary/content pages that do not change every minute, increase that a lot:
export const revalidate = 86400 // 1 day
or make them fully static / on-demand revalidated if they only change when you publish content.
Also, if your routes are dynamic, make sure bots cannot generate unlimited unknown pages. If you know all valid slugs, use generateStaticParams() and consider:
export const dynamicParams = false
That way random bot URLs return 404 instead of causing new dynamic/ISR work.
So my read is: upgrading to Pro may give you more room, but I would not upgrade just to absorb bot traffic. First reduce the bot requests and make sure your ISR pages are not revalidating too often. After that, if real traffic plus legitimate search crawling still exceeds the Hobby limits, then Pro makes more sense.