AIPricingLabGlossary
Glossary

Composite event

A single tracked event (one vevee.track call) that, via match rules, increments more than one limit group at the same time. The default model in AIPricingLab.

Last updated: 2026-05-10

Definition

Real billing models are not 1:1. One image render might count toward "total renders this month" AND "premium renders this month" AND "cost in cents." Instead of three separate track calls, AIPricingLab fires one event and routes it through the match rules of every limit group on the user's plan. All matching groups increment atomically. This is composability that naive metering tools lack.

Example

vevee.track(userId, "image.render", 1, { model: "flux-pro" }) increments lg_total_renders, lg_premium_renders, AND lg_cost_cents (each with the appropriate quantity).

Related terms