PlatformMonitor

Inspecting an Event

The Event details will provide all the information to understand how this event was received, which data it contained and the tools to reproduce it locally.

Accessing Events

Events across all application of the currently selected environment are accessible via the "Events" page in the left side navigation.

The Events list features the last events received.

Events can be filtered using a time filter.

Accessing the events of a specific Event Type is achieved via the "Event Types" menu.

Searching Events

Advanced filters are available using a CEL expression. The search feature is available by clicking on the "Show search" button.

The events list features an advance search feature that filters results using a CEL query.

Searchable properties

Only basic search operators and the event variable are available for now:

Field nameTypeOperators
event.idstring==, !=
event.namestring==, !=
event.tsint64==, !=, >, >=, <, <=
event.vstring==, !=
event.datamap[string]any==, !=, >, >=, <, <=

A few examples of valid search queries are event.data.hello == "world" and event.name != "billing". Learn more about how expressions are used in Inngest.

You can combine multiple search queries using the && operator or || operator. Adding a new line is the equivalent of using the && operator.