···11+# check prod health
22+33+## quick status
44+```bash
55+curl -s https://leaflet-search-backend.fly.dev/health
66+curl -s https://leaflet-search-backend.fly.dev/stats | jq
77+```
88+99+## observability
1010+use the logfire MCP server to query traces and logs:
1111+- `mcp__logfire__arbitrary_query` - run SQL against traces/spans
1212+- `mcp__logfire__find_exceptions_in_file` - recent exceptions by file
1313+- `mcp__logfire__schema_reference` - see available columns
1414+1515+## database
1616+use turso CLI for direct SQL:
1717+```bash
1818+turso db shell leaflet-search "SELECT COUNT(*) FROM documents"
1919+turso db shell leaflet-search "SELECT * FROM documents ORDER BY created_at DESC LIMIT 5"
2020+```
2121+2222+## tap status
2323+from `tap/` directory: `just check`