License
Quotas
What 500,000 events/month actually counts, where that number comes from now that verification is fully offline, and what happens at 90% and 100% usage — which is, deliberately, nothing that affects your running app.
Prerequisites
- A FLUX_LICENSE_TOKEN already wired into createFlux() — see license/setup if not
- Useful to read alongside license/webhook-setup, since that's where the numbers on this page actually get reported from
1
What counts as an event
Quota is Flux-native, not HTTP-request-native — a single bootstrap call dispatching ten stores is one event, not ten, and raw HTTP method counts are never part of the picture at all.
typescript
2
Where the number actually comes from
Not TsWorldTech watching your traffic — there's no traffic to watch. This entirely comes from your own server's daily report call.
typescript
The dashboard mirrors your own numbers
There's no independent measurement to reconcile against. Whatever your events and users counting logic reports is exactly what shows up on your Usage tab.
3
Quota by tier
Same numbers as pricing, restated here for whoever lands directly on this page.
typescript
4
What happens at 90% and 100%
Nothing breaks at either threshold. Quota enforcement here means dashboard visibility, not a kill switch — worth reading in full since this is a meaningfully different model than most licensing systems.
typescript
5
If you never set up reporting
The Usage tab simply stays empty. Your app doesn't know or care whether reporting is wired up at all.
typescript
To wire up sendDailyReport() and start populating the Usage tab, see license/webhook-setup. For domain authorization, see license/domain-binding. For the four credentials referenced throughout, see license/setup.