Hanzo
OpenapiMetrics

Append spans for your org

Takes `{spans:[{traceId, spanId, parentId, name, startNs, endNs, attrs}]}`, appends each, and answers `{written}` — the number of spans sent.

POST /v1/metrics/traces/write

Addresshttps://api.hanzo.ai/v1/metrics/traces/write
MethodPOST
Operationpost_metrics_traces_write
AuthAuthorization: Bearer $HANZO_API_KEY

Takes {spans:[{traceId, spanId, parentId, name, startNs, endNs, attrs}]}, appends each, and answers {written} — the number of spans sent. Every span is indexed by its trace id as it lands, which is what makes the waterfall read possible without a second store.

Times are NANOSECONDS since the Unix epoch. Retention is a bounded ring of 1048576 spans per org: past that the OLDEST are evicted to keep the newest 1048576, and the trace index is rebuilt — so a long-lived trace can lose its early spans while its later ones survive, and a waterfall read is best-effort against retention, not a guarantee.

The tenant is the gateway-minted X-Org-Id header, falling back to the deployment brand and then default. A body that does not decode is 400.

Request

The document declares no body for POST /v1/metrics/traces/write. The handler is typed in cloud but its shape is not yet emitted, so the fields are not listed here — ask the MCP door's describe for post_metrics_traces_write, which answers from the running route.

Response

The document declares no response body for this operation. It answers 200 on success and the platform error shape on failure — see Errors.

Examples

hanzo has no subcommand for this operation — the CLI serves only what cloud's live route table confirms. Use HTTP or an SDK.


Metrics API · All Hanzo APIs · Interactive reference

How is this guide?

On this page