GreenFlow docs

Usage & stats

Per-tenant request stats, broken down by endpoint and status. Useful for capacity planning and SLA reporting.

Request logs are written on the terminate() hook of every authenticated API call. They surface in the Filament panel at /manage/request-logs today (Wave 1). A public read endpoint is on the roadmap for Wave 4.

Shape of a request log row

json
{
  "client_id": 1,
  "api_key_id": 7,
  "method": "POST",
  "path": "/api/v1/fleet/list",
  "status": 200,
  "duration_ms": 1404,
  "ip": "203.0.113.42",
  "user_agent": "curl/8.1.2",
  "logged_at": "2026-04-19T10:22:45+00:00"
}

See the audit log chapter in docs/API.md for the full shape and the list of audited mutations.