Overview
A Usage property shows how much a customer actually used something, by aggregating the events you’ve sent to a usage module. API calls this month, seats consumed, messages sent. Pick it from Complex in the property type list. Like a rollup, it’s computed at read time and read-only.Configuration
The window is rolling, not a fixed date range, “last 30 days” always means
the 30 days ending now, so the value can’t go stale.
What it stores
Nothing on the record. It’s computed from the module’s events each time the record is read.Filtering, sorting and grading on it
The number is written to the search index as an ordinary number, so a Usage property behaves like any other numeric column:- Filter a view on it, “API calls this month is under 5”.
- Sort by it, and use it in a table’s footer calculations.
- Score a grade on it. Point a rubric’s field criterion at the Usage property, the same way you would at any other field, and use it to drive onboarding health or churn risk.
- Read it from a formula on the same object.
The indexed figure is a snapshot, refreshed overnight and whenever the
record is next saved, so a view can be up to a day behind a burst of events. A
grade is not: it aggregates the events live every time it recomputes, so the
score is exact at the moment it was calculated.
Examples
- API calls (30d) on an Account: count, customer role, 30-day window.
- Seats used on a Subscription, sum of quantity, all time.
See also
- Usage reporting: creating modules and sending events.
- Rollup: aggregate related records instead of events.