Reference

Requests

Inspect method executions: input, output, timing, and errors.
remy-admin requests

Every method the app runs is recorded here, whatever set it off: a web click, an API call, a scheduled job, an inbound email, an agent turn. Each request log entry holds the input, the return value, the console output, the duration, and the interface it came in through, so a failure is legible after the fact instead of lost. list pages recent executions, filtered by method or by success and error status; get opens one in full, down to the stack trace; and a run's id is its log id, so following a cron run or a webhook to its outcome is a single lookup.

stats is the aggregate layer over the same data: per-bucket totals, a per-method breakdown with sparklines, error counts by type, and the split across interfaces, for the whole app or scoped to one method. It is the read side of the app's own operational telemetry, from the terminal or from code, without opening a dashboard.

3 entries