Response
Returns{ "items": [AgentHealthRecord] }.
Array of
AgentHealthRecord objects, one per known agent.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve health metrics for all agents, including online status, latency, and success rate derived from actual invocation history.
{ "items": [AgentHealthRecord] }.
AgentHealthRecord objects, one per known agent.Show AgentHealthRecord
unknown, online, degraded, or offline.[0.0, 1.0].curl http://your-node:8042/v1/health/agents
{
"items": [
{
"agent_id": "stripe-agent",
"provider_id": "acme-labs",
"status": "online",
"last_seen_at": "2025-01-15T10:30:02Z",
"last_latency_ms": 312,
"success_count": 482,
"failure_count": 3,
"success_rate": 0.9938,
"updated_at": "2025-01-15T10:30:02Z"
},
{
"agent_id": "legacy-agent",
"provider_id": "old-corp",
"status": "offline",
"last_seen_at": "2025-01-10T06:00:00Z",
"success_count": 10,
"failure_count": 45,
"success_rate": 0.1818,
"updated_at": "2025-01-10T06:00:00Z"
}
]
}