Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion frontend/src/components/actors/workflow/actor-workflow-tab.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

100 changes: 100 additions & 0 deletions frontend/src/components/actors/workflow/workflow-visualizer.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions website/src/content/docs/actors/debugging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ Returns in-memory metrics for the current actor wake cycle. Metrics are not pers

Includes counters for `action_calls`, `action_errors`, `action_duration_ms`, `connections_opened`, `connections_closed`, `sql_statements`, `sql_duration_ms`, and `kv_operations`.


### Polling

Inspector endpoints are safe to poll. For live monitoring, poll at 1-5 second intervals. The `/inspector/summary` endpoint is useful for periodic snapshots since it returns all data in a single request.
Expand Down
1 change: 1 addition & 0 deletions website/src/metadata/skill-base-rivetkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Use the inspector HTTP API to examine running actors. These endpoints are access
- `GET /inspector/queue?limit=50` - queue status
- `GET /inspector/traces?startMs=0&endMs=...&limit=1000` - trace spans (OTLP JSON)
- `GET /inspector/workflow-history` - workflow history and status as JSON (`nameRegistry`, `entries`, `entryMetadata`)
- `POST /inspector/workflow/replay` - replay a workflow from a specific step or from the beginning
- `GET /inspector/database/schema` - SQLite tables and views exposed by `c.db`
- `GET /inspector/database/rows?table=...&limit=100&offset=0` - paged SQLite rows for a table or view
- `POST /inspector/workflow/replay` - replay a workflow from a specific step or from the beginning
Expand Down
Loading