Endpoints
GET /api/v1/system/status
Detailed system status and statistics
Get detailed system status including core engine statistics.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Detailed system status and statistics
GET /api/v1/system/status
curl http://localhost:8000/api/v1/system/status
{
"status": "running",
"version": "1.0.0",
"core": {
"rules_total": 37,
"rules_enabled": 15,
"transactions_processed": 1523,
"findings_generated": 42,
"avg_evaluation_time_ms": 1.2
}
}
| Field | Type | Description |
|---|---|---|
status | string | Core engine status (running, stopped) |
version | string | Blocklight version |
core.rules_total | number | Total number of loaded rules |
core.rules_enabled | number | Number of enabled rules |
core.transactions_processed | number | Total transactions processed |
core.findings_generated | number | Total findings generated |
core.avg_evaluation_time_ms | number | Average rule evaluation time in milliseconds |