On this page

ConsoleEvent log

Event Log

Enterprise

The Event Log under Developers → Event Log in the console gives you a queryable view of every event qbrix has processed.

allfeedbackselectionaudit15m1h6h24h
TimeStreamTypeExperimentPayload
19:42:09.118
feedback
reward.recorded
checkout-cta
reward=1.0
19:42:08.412
selection
arm.selected
checkout-cta
arm=social-proof is_default=false
19:41:57.006
audit
experiment.updated
pricing-page
actor=admin@acme.com enabled=false
The event log. Category chips filter the three streams; the range chips bound how far back the query reaches.

Three event types

Qbrix publishes three independent streams. The Event Log lets you filter by type:

TypeSourceContents
SelectionEvery select() callrequest_id, experiment_id, chosen arm_id, context, is_default flag
FeedbackEvery feedback() callrequest_id, reward, arm_index, context
AuditControl-plane writeswho created/updated/deleted what (experiments, pools, gates, API keys, members)

Use the category chips to flip between them, or pick all to see them interleaved.

Filtering

The filter bar supports:

  • Categoryall, feedback, selection or audit.
  • Experiment — narrow to a single experiment.
  • Time range15m, 1h, 6h or 24h.

Each row expands to show the full event payload, and a selection row expands to its paired feedback.

Common use cases

Debugging a missing reward. Filter to selection for one experiment and expand a row: it shows the paired feedback, or that none arrived. A selection with no feedback usually points to a client-side bug or a misrouted webhook.

Auditing a config change. Filter to audit to see when an admin disabled an experiment or rotated an API key. The actor is in each row's payload. For a single experiment, its own Activity tab is the better surface — it drops the experiment column and gives the actor one of its own. Audit events name the fields that changed, not their values.

Spot-checking selections. Filter to selection plus a single experiment to confirm that traffic is actually being distributed across arms (and that the gate isn't accidentally serving 100% default).

Retention

Events are retained for 90 days, uniformly across every event type and every plan tier. Events older than the retention window are evicted and are no longer queryable from the console.

Note

The Event Log requires the Scale plan or above. See Plans & limits.

Next steps