Traces

Traces & service map

Send traces via OTLP/HTTP to /v1/traces. The edge extracts service-map edges (caller → callee) and span error rates. The Traces view renders the service map and a per-trace waterfall. Error spans are highlighted automatically.

Ingest

# Direct OTLP/HTTP
curl -X POST https://your-edge/v1/traces \
  -H "Authorization: Bearer $PB_KEY" \
  -H "Content-Type: application/x-protobuf" \
  --data-binary @traces.pb

Tracer SDKs

Use any OpenTelemetry SDK pointed at /v1/traces, or use one of our branded wrappers for one-line bootstrap:

AWS Step Functions waterfall

Without instrumenting your state machines, PulseBoard turns Step Functions executions into spans:

Service map

Edges are extracted from each span's parentSpanId + service.name. Error rates per edge are computed from span status.code. Hover any edge to see request rate, error rate, latency p50/p95/p99.