Skip to content

Events

import { Aside } from ‘@astrojs/starlight/components’;

The Events screen shows every event in your tenant — queued, running, and completed. It is the primary place to monitor your automation pipeline and diagnose failures.

Events overview


Events are displayed in a server-side paginated table. The most recent events appear first.

Events table

ColumnDescription
StateColour-coded chip: SUCCESS (green), ERROR (red), WARNING / RUNNING (orange), QUEUED (grey)
Result CodeNumeric exit code returned by the task module
Result MessageSummary message. Hover to see all messages in a tooltip
Event DataJSON payload passed to the task. Hover for the full document
Data VersionIncremented each time the event data is updated
Event TypeThe Event Type that this event belongs to
SinkThe sink agent that executed (or is executing) this event
ScheduleThe schedule that triggered this event (if applicable)
TimestampWhen the event was created

Event state chips

Each event row shows a state chip. Click the chip to open the event detail panel.


Events topbar — search and date filter

Type in the Search events… field on the left of the topbar. Results filter instantly on the server — matches on event type name, state, result message, and other fields.

Search input

Select a time range from the Timespan dropdown in the topbar to restrict events to a specific window.

Date filter dropdown

PresetRange
Last 5 minNow − 5 minutes
Last 30 minNow − 30 minutes
Last 1 hourNow − 1 hour
TodayStart of today
Last 24 hoursNow − 24 hours
Last weekNow − 7 days
Custom rangePick any start and end date/time

Click Clear to remove the filter and show all events.


Use the Auto-refresh control in the toolbar to automatically reload the list on a fixed interval. This is useful when monitoring a running pipeline.

Auto-refresh off

Toggle the switch to enable auto-refresh, then choose an interval:

Auto-refresh on with interval selected

IntervalReload frequency
10sEvery 10 seconds
30sEvery 30 seconds (default)
1mEvery minute
5mEvery 5 minutes

Click the refresh icon (↺) at any time to trigger an immediate reload regardless of the auto-refresh state.


Each row has action buttons on the right:

ButtonAction
Edit iconOpens the event detail panel
Delete iconDeletes the event after confirmation
Log iconOpens the raw log viewer (only shown when a log file is available)

Clicking the State chip also opens the detail panel.

Check the checkboxes on the left of multiple rows, then click Delete Selected (N) in the toolbar above the table to delete all selected events at once.


Click an event’s state chip or edit button to open the detail panel.

Event detail panel

The panel shows:

  • Full event payload (formatted JSON)
  • All result messages
  • Result data output
  • Execution timestamps
  • Parent event (if this event was triggered by a chain)

When a task produces a log file, the log icon appears in the row’s actions column. Clicking it opens a modal that fetches and displays the raw log output from the sink — useful for debugging failed tasks.

The log viewer renders the content in a monospace scrollable box. Close it with the × button or by pressing Escape.