Inspect the event-sourced audit trail the detection engine writes for every check. See Incident Forensics for the conceptual overview.Documentation Index
Fetch the complete documentation index at: https://docs.devhelm.io/llms.txt
Use this file to discover all available pages before exploring further.
Commands
| Command | Description |
|---|---|
devhelm forensics timeline <incident-id> | Full timeline for an incident |
devhelm forensics trace <check-id> | Everything recorded for a single check execution |
devhelm forensics snapshot <hash-hex> | Fetch a policy snapshot by SHA-256 hash |
devhelm forensics evaluations --monitor-id <uuid> | List rule evaluations for a monitor (paginated) |
devhelm forensics transitions --monitor-id <uuid> | List state transitions for a monitor (paginated) |
forensics timeline
--output json to pipe the full payload into jq.
forensics trace
checkId. Useful when a webhook or support ticket references a specific execution ID.
forensics snapshot
forensics evaluations
| Flag | Type | Description |
|---|---|---|
--monitor-id | uuid | Required. Monitor to query |
--rule-type | string | Filter by rule type (e.g. consecutive_failures, response_time) |
--region | string | Filter by probe region |
--only-matched | boolean | Return only evaluations that fired (outputMatched = true) |
--from | ISO-8601 | Lower bound (occurredAt >= from) |
--to | ISO-8601 | Upper bound (occurredAt < to) |
--page | integer | 0-based page index (default 0) |
--size | integer | Page size (default 50) |
forensics transitions
evaluations. Each row includes fromStatus → toStatus, reason, the checkId that caused it, and (when the transition was part of an incident lifecycle) the incidentId.
Output formats
Allforensics commands accept --output table|json|yaml (default table). The rendered table is deliberately terse — for the full DTO use --output json and pipe to jq.
Next steps
Incident Forensics
Concepts, retention, and use cases for the forensic model.
Incidents CLI
Pair
forensics timeline with incidents get for the full picture.