The Events page (Documentation Index
Fetch the complete documentation index at: https://docs.pecta.ai/llms.txt
Use this file to discover all available pages before exploring further.
/events) is the raw log of every evaluation Pecta has processed for your organisation. It shows results newest first, 100 rows at a time. Navigate to Events in the sidebar to open it. You can filter the feed without leaving the page — results update immediately as you type or change the outcome selector.
What each event shows
Each row in theEventFeed component displays the following fields from the EventRow type:
| Field | Description |
|---|---|
| Timestamp | created_at in UTC, shown to the second (YYYY-MM-DD HH:MM:SS) |
| Agent | agent_id — the identifier your SDK or proxy reported |
| Outcome | PASS (emerald) or BLOCK (red), derived from the boolean passed field |
| Gate chips | One chip per gate in the gates array — green for pass, red for fail, grey for skipped. Hover a chip to read the gate’s reason string. |
| Latency | total_latency_ms in milliseconds, right-aligned, showing the cumulative time across all gates |
The
tool_name field is stored on every event but is not displayed as a separate column in the current feed layout. It is available when you query GET /v1/events directly.reputation_score at the time of the evaluation is stored on each event record and is available via the API, but the Events page focuses on gate-level detail rather than score history.
Filters
Two filters sit above the event feed. Both reset the page offset to 0 when changed.Filter by agent
Type anyagent_id into the Filter by agent_id text input. The dashboard passes your input as the agent_id query parameter to GET /v1/events. The match is exact — use the full agent ID as registered.
Filter by outcome
Use the All / Passed / Failed dropdown to restrict results to a specific outcome. Selecting Passed setspassed=true on the API request; selecting Failed sets passed=false. All omits the parameter entirely.
Pagination
The feed loads 100 events per page. Use the ← Newer and Older → buttons at the bottom of the page to move through the full history. The current position is shown asShowing N–M between the two buttons.
- ← Newer is disabled when you are on the first page (offset 0).
- Older → is disabled when the current page returns fewer than 100 rows, indicating the end of the result set.
API connection
The Events page reads from the same endpoint you can query directly:EventsPage interface used by the dashboard:
Queries that span long time periods may be slower. Use the
from and to parameters to constrain large historical queries for best performance.