Lists Kubernetes jobs with the CPU and memory their pods used against request…
Lists Kubernetes jobs with the CPU and memory their pods used against request and limit, the latest desired-successful, active, failed and successful pod…
POST /v1/o11y/infra_monitoring/jobs
| Address | https://api.hanzo.ai/v1/o11y/infra_monitoring/jobs |
| Method | POST |
| Operation | post_o11y_infra_monitoring_jobs |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Lists Kubernetes jobs with the CPU and memory their pods used against request and limit, the latest desired-successful, active, failed and successful pod counters, and per-group pod phase counts — the phase counts are current state while the counters are cumulative over the job's life. Rows answer as 'list' under the default k8s.job.name grouping or 'grouped_list' under a custom groupBy; a metric with no data in the window answers -1. Filterable by expression, orderable by the pod metrics or the job counters, paginated by offset and limit.
Request
22 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
end | body | integer | — | |
filter | body | o11y.Filter | — | |
filter.expression | body | string | — | expression to filter by following the filter syntax |
groupBy | body | o11y.GroupByKey[] | — | |
groupBy[].description | body | string | — | |
groupBy[].fieldContext | body | any | — | |
groupBy[].fieldDataType | body | any | — | |
groupBy[].name | body | string | yes | |
groupBy[].signal | body | any | — | |
groupBy[].unit | body | string | — | |
limit | body | integer | — | |
offset | body | integer | — | |
orderBy | body | o11y.querybuildertypesv5.OrderBy | — | |
orderBy.direction | body | any | — | direction to order by |
orderBy.key | body | o11y.OrderByKey | — | |
orderBy.key.description | body | string | — | |
orderBy.key.fieldContext | body | any | — | |
orderBy.key.fieldDataType | body | any | — | |
orderBy.key.name | body | string | yes | |
orderBy.key.signal | body | any | — | |
orderBy.key.unit | body | string | — | |
start | body | integer | — |
Response
| Status | Body | Meaning |
|---|---|---|
200 | o11y.O11yInfraJobsOut | ok |
200 body — 30 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
data | body | o11y.Jobs | — | |
data.endTimeBeforeRetention | body | boolean | — | |
data.records | body | o11y.JobRecord[] | — | |
data.records[].activePods | body | integer | — | |
data.records[].desiredSuccessfulPods | body | integer | — | |
data.records[].failedPods | body | integer | — | |
data.records[].jobCPU | body | number | — | |
data.records[].jobCPULimit | body | number | — | |
data.records[].jobCPURequest | body | number | — | |
data.records[].jobMemory | body | number | — | |
data.records[].jobMemoryLimit | body | number | — | |
data.records[].jobMemoryRequest | body | number | — | |
data.records[].jobName | body | string | — | |
data.records[].meta | body | object | — | |
data.records[].meta.* | body | string | — | |
data.records[].podCountsByPhase | body | o11y.PodCountsByPhase | — | |
data.records[].podCountsByPhase.failed | body | integer | — | |
data.records[].podCountsByPhase.pending | body | integer | — | |
data.records[].podCountsByPhase.running | body | integer | — | |
data.records[].podCountsByPhase.succeeded | body | integer | — | |
data.records[].podCountsByPhase.unknown | body | integer | — | |
data.records[].successfulPods | body | integer | — | |
data.total | body | integer | — | |
data.type | body | any | — | |
data.warning | body | o11y.QueryWarnData | — | |
data.warning.message | body | string | — | |
data.warning.url | body | string | — | |
data.warning.warnings | body | o11y.QueryWarnDataAdditional[] | — | |
data.warning.warnings[].message | body | string | — | |
status | body | string | — | Status is "success". |
Failure carries the platform error shape — see Errors.
Examples
hanzo o11y infra_monitoring jobsimport { Configuration, O11yApi } from 'hanzoai';
const api = new O11yApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postO11yInfraMonitoringJobs({ end: 0, filter: {"expression":"<expression>"} });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import O11yApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = O11yApi(client).post_o11y_infra_monitoring_jobs(end=0, filter={"expression":"<expression>"})cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.O11yAPI.PostO11yInfraMonitoringJobs(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, o11y_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = o11y_api::post_o11y_infra_monitoring_jobs(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.O11yApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new O11yApi(client).postO11yInfraMonitoringJobs();curl -X POST https://api.hanzo.ai/v1/o11y/infra_monitoring/jobs \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"end": 0,
"filter": {
"expression": "<expression>"
}
}'The door reaches o11y through the o11y tool, which names its 340 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": "get_o11y_alert_last"
}
}
}'How is this guide?