Serves the invocations-over-time histogram for the org's Agents dashboard.
Serves the invocations-over-time histogram for the org's Agents dashboard.
GET /v1/agents/metrics
| Address | https://api.hanzo.ai/v1/agents/metrics |
| Method | GET |
| Operation | get_agents_metrics |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Serves the invocations-over-time histogram for the org's Agents dashboard. Every point is a REAL count of recorded runs in that time bucket — one series line per agent that ran in the window. The Resource Usage rollup is all-null because this store meters no CPU/memory/storage/cost; the console renders those as "—" rather than a fabricated figure. No runs => empty series (an honest "not connected / no activity yet"), never a synthesized trend.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
range | query | string | — | Range is the window to bucket: 24H, 7D or 30D. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | metricsView | ok |
200 body — 11 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
range | body | string | — | echoes the requested window (24H|7D|30D) |
resource | body | resourceUsage | — | |
resource.costCents | body | number | — | CostCents would be the window's spend in cents. |
resource.cpuVcpuHours | body | number | — | CPUVcpuHours would be vCPU-hours over the window. Always null: this store holds agent definitions and run I/O, and nothing here meters a CPU. |
resource.memGbHours | body | number | — | MemGbHours would be gigabyte-hours of memory. |
resource.storageIoBytes | body | number | — | StorageIoBytes would be bytes moved to and from storage. |
series | body | seriesLine[] | — | per-agent invocation histogram (real) |
series[].key | body | string | — | agent name |
series[].points | body | seriesPoint[] | — | Points is one bucket per interval across the whole window, in time order and never sparse: a bucket with no runs is present with v 0, so two lines drawn from… |
series[].points[].t | body | string | — | bucket start, RFC3339 UTC |
series[].points[].v | body | integer | — | real invocation count in the bucket |
Failure carries the platform error shape — see Errors.
Examples
hanzo agents metricsimport { Configuration, AgentsApi } from 'hanzoai';
const api = new AgentsApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getAgentsMetrics();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import AgentsApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = AgentsApi(client).get_agents_metrics()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.AgentsAPI.GetAgentsMetrics(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, agents_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = agents_api::get_agents_metrics(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.AgentsApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new AgentsApi(client).getAgentsMetrics();curl https://api.hanzo.ai/v1/agents/metrics \
-H "Authorization: Bearer $HANZO_API_KEY"The door reaches agents through the agents tool, which names its 36 operations with its own verbs — this one among them, under a name only the door declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_agent_conversations"
}
}
}'How is this guide?