Skip to content

Traces & OpenTelemetry

POST /v1/traces

Send trace-oriented payloads (see platform schema). Requires sdk_key.

POST /v1/otel/traces

Accept OpenTelemetry trace data with your SDK key.

For Node apps already using OTEL, you can alternatively map spans with:

typescript
import { exportOtelSpans } from '@amlexiahq/node/otel';
exportOtelSpans(client, spans);

This sends normalized events via /v1/events.

W3C trace context

HTTP middleware sets a traceparent header on responses:

00-{traceId}-{spanId}-01

Propagate this header to downstream services for linked traces.

Dashboard

View assembled traces under Traces at app.amlexia.com.

← Ingest overview