Skip to main content

OpenTelemetry Bridge

View as Markdown

OpenTelemetry Bridge (rocketride otel)

The OpenTelemetry bridge exports live pipeline traces and metrics from a running RocketRide engine to any OpenTelemetry collector over OTLP — Jaeger, Grafana Tempo, Datadog, Langfuse, LangSmith, or anything else that ingests OTLP. It ships with the Python client as the rocketride otel CLI command and requires zero engine or server changes: the bridge is a pure consumer of the engine's documented WebSocket monitor protocol, subscribing to the TASK, SUMMARY, FLOW, and SSE event streams with the wildcard token scope (the documented scope for an ingestion service) and translating them into OTel spans and metrics on the fly. Point it at your engine and your collector, and every pipeline run visible to your API key shows up as a trace.

RocketRide engine ──(WebSocket monitor events)──▶ rocketride otel ──(OTLP)──▶ your backend

Install

The bridge's OpenTelemetry dependencies are an optional extra — the base rocketride package gains no new dependencies:

pip install 'rocketride[otel]'

Running rocketride otel without the extra exits with code 2 and prints the install command above.

Quickstart: Jaeger end-to-end

Run Jaeger all-in-one (UI + OTLP receivers, in-memory storage):

docker run --rm -d --name jaeger \
-p 16686:16686 -p 4317:4317 -p 4318:4318 \
jaegertracing/all-in-one:1.76.0

Start the bridge — the defaults already point at http://localhost:4318 (OTLP over HTTP/protobuf):

export ROCKETRIDE_URI=ws://localhost:5565   # or wss://api.rocketride.ai + ROCKETRIDE_APIKEY
rocketride otel

Now start a pipeline run with a trace level so it emits FLOW events (see the callout below — this is the step everyone misses):

import asyncio
from rocketride import RocketRideClient


async def main():
# Uses ROCKETRIDE_URI / ROCKETRIDE_APIKEY from the environment
async with RocketRideClient() as client:
result = await client.use(filepath='pipeline.pipe', pipelineTraceLevel='summary')
token = result['token']
await client.send(token, 'hello traces', objinfo={'name': 'input.txt'}, mimetype='text/plain')
await client.terminate(token)


asyncio.run(main())

Open http://localhost:16686, select the rocketride-engine service, and click Find Traces. You'll see one trace per run: a task root span, a pipe span per object, and component child spans underneath.

CLI reference

rocketride otel [--endpoint URL] [--protocol http|grpc] [--service-name NAME]
[--headers k=v,k=v] [--include-content] [--no-metrics]
[--trace-level none|metadata|summary|full]
FlagDefaultDescription
--endpoint <url>OTEL_EXPORTER_OTLP_ENDPOINT, else the exporter default (http://localhost:4318 for http, localhost:4317 for grpc)OTLP base URL. The signal paths /v1/traces / /v1/metrics are appended automatically unless already present, so pasting Langfuse's or LangSmith's ingest URL just works. Without the flag the endpoint environment variables are resolved by the OTel SDK exporters themselves (never pre-read by the bridge), so OTEL_EXPORTER_OTLP_TRACES_ENDPOINT / OTEL_EXPORTER_OTLP_METRICS_ENDPOINT keep their spec-defined precedence over the generic OTEL_EXPORTER_OTLP_ENDPOINT (which the SDK still treats as a base URL).
--protocol <p>httpOTLP transport: http (http/protobuf) or grpc. The gRPC exporter is not part of the otel extra — see Troubleshooting.
--service-name <n>OTEL_SERVICE_NAME or rocketride-engineThe service.name resource attribute your backend groups by.
--headers <pairs>OTEL_EXPORTER_OTLP_HEADERSComma-separated key=value pairs sent with every OTLP request. Values are split on the first = only, so base64 padding survives. Prefer the env var for secrets — command-line arguments are visible in shell history and ps output; keep --headers for non-secret headers. Without the flag, the OTel SDK resolves OTEL_EXPORTER_OTLP_HEADERS and the signal-specific OTEL_EXPORTER_OTLP_TRACES_HEADERS / OTEL_EXPORTER_OTLP_METRICS_HEADERS itself.
--include-contentoffInclude pipeline payload content in spans, truncated to 8 KB per attribute. By default no payload text reaches any span.
--no-metricsoffExport traces only; task status snapshots are not mapped to metrics.
--insecureoff (ROCKETRIDE_OTEL_ALLOW_INSECURE)Allow credential-bearing OTLP headers over cleartext transport to a non-loopback collector. Without it the bridge exits 2 rather than putting an Authorization / x-api-key value on the wire in the clear — see Transport security.
--trace-level <l>Informational only. The bridge cannot change the trace level of runs it did not start; this flag just prints a reminder of how to start traced runs.

Plus the standard connection arguments shared by all subcommands: --uri (ROCKETRIDE_URI) and --apikey (ROCKETRIDE_APIKEY). No task token is needed — the bridge subscribes to every task your API key owns.

Configuration precedence: explicit CLI flags > standard OTEL_* environment variables > built-in defaults. Only OTEL_SERVICE_NAME is read by the bridge; the endpoint and header variables are resolved by the OTel SDK exporters themselves (never pre-read by the bridge), so the signal-specific OTEL_EXPORTER_OTLP_TRACES_ENDPOINT / _METRICS_ENDPOINT / OTEL_EXPORTER_OTLP_TRACES_HEADERS / _METRICS_HEADERS keep their spec-defined precedence over the generic variables whenever --endpoint / --headers is not given. Pre-reading a generic variable and handing it to both exporters would turn it into an explicit value that silently overrides the signal-specific ones.

Transport security

OTLP exporters send whatever headers they are configured with to whatever endpoint they are given; they impose no TLS requirement of their own. So before any exporter is built, the bridge checks the effective endpoint of each signal (explicit --endpoint > signal-specific env var > generic env var > SDK default) against the effective headers (--headers plus all three OTEL_EXPORTER_OTLP_*HEADERS variables — names only; values are never read, logged or echoed):

  • A credential-looking header name (Authorization, x-api-key, *-token, *-secret, …) plus a non-loopback http:// endpoint — or a gRPC endpoint with OTEL_EXPORTER_OTLP_INSECURE set — aborts startup with exit code 2.
  • Loopback endpoints (localhost, 127.0.0.1, ::1) are exempt: that is the local collector / Jaeger case from the quickstart.
  • --insecure (or ROCKETRIDE_OTEL_ALLOW_INSECURE=1) overrides the check for a trusted network, and prints a warning to stderr.

Two related hardening measures need no configuration: the OTLP/HTTP exporters use a session that does not follow redirects (requests strips Authorization only on a cross-host redirect, so a 3xx would otherwise replay x-api-key to the redirect target), and the startup line prints the endpoint redacted — userinfo and query string removed — because a signed collector URL is itself a credential.

Exit codes: 0 graceful shutdown (Ctrl+C / SIGTERM), 1 unexpected runtime error, 2 missing dependency (the otel extra, or the gRPC exporter with --protocol grpc), a cleartext-credential refusal, or startup connection/subscribe failure.

FLOW spans need a trace level

apaevt_flow events — and therefore per-component spans — fire only for runs started with a pipelineTraceLevel (an argument of the execute request, i.e. client.use(..., pipelineTraceLevel='summary')). The bridge can only observe; it cannot turn tracing on for a run it did not start. Without a trace level you still get task lifecycle spans and all metrics, just no component breakdown. summary is the practical level: lane writes and final results without per-call noise.

Backend recipes

Jaeger / Grafana Tempo / any OTLP collector

Covered by the quickstart: OTLP/HTTP on port 4318 (or --protocol grpc against 4317 with the gRPC exporter installed). Grafana Tempo listens on the same two ports once its distributor.receivers.otlp block is enabled, so --endpoint http://tempo:4318 is the only change; pair it with Grafana Mimir or Prometheus for the metric stream. The same shape works for the OpenTelemetry Collector and any other standard OTLP receiver.

Langfuse

Langfuse ingests OTLP traces over HTTP only (no gRPC, no metrics) at /api/public/otel, with HTTP Basic auth built from your project keys:

# Read the Langfuse project keys instead of typing them into the command:
# a literal key in a command line lands in shell history and in `ps` output,
# and `echo -n '<secret>' | base64` exposes it in the process list too.
printf 'Langfuse public key (pk-lf-...): ' >&2; read -r LANGFUSE_PUBLIC_KEY
printf 'Langfuse secret key (sk-lf-...): ' >&2; read -rs LANGFUSE_SECRET_KEY; echo >&2

# tr -d strips the line breaks GNU base64 inserts every 76 characters: real
# project keys exceed that, and a wrapped value is an invalid header.
export LANGFUSE_AUTH="$(printf '%s' "${LANGFUSE_PUBLIC_KEY}:${LANGFUSE_SECRET_KEY}" | base64 | tr -d '\r\n')"
export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Basic ${LANGFUSE_AUTH}"
unset LANGFUSE_SECRET_KEY

rocketride otel \
--endpoint https://cloud.langfuse.com/api/public/otel \
--no-metrics

(printf + read -rs is spelled the same in bash and zsh; bash users can shorten the second line to read -rsp 'Langfuse secret key: ' LANGFUSE_SECRET_KEY.)

The auth header travels via OTEL_EXPORTER_OTLP_HEADERS rather than a --headers argument so the secret never lands in your shell history or shows up in ps output. Better still, source it from your secret manager — export LANGFUSE_SECRET_KEY="$(op read ...)" or the equivalent — and export only the variable reference.

Use https://us.cloud.langfuse.com/api/public/otel for the US region, or https://<your-host>/api/public/otel for self-hosted (Langfuse v3.22.0+). Pass --no-metrics: Langfuse's OTLP ingest is traces-only. Spans from LLM components carry gen_ai.* attributes, which Langfuse maps into its own data model.

LangSmith

LangSmith ingests OTLP traces over HTTP at /otel, authenticated with an x-api-key header (optional Langsmith-Project header to pick the project):

# Prompt for the key (or read it from a secret manager) rather than typing it
# into the command: the env var keeps it out of `ps`, but a literal value in
# the export line is still recorded in shell history.
printf 'LangSmith API key: ' >&2; read -rs LANGSMITH_API_KEY; echo >&2
export OTEL_EXPORTER_OTLP_HEADERS="x-api-key=${LANGSMITH_API_KEY},Langsmith-Project=your-project-name"

rocketride otel \
--endpoint https://api.smith.langchain.com/otel \
--no-metrics

Regional hosts: eu.api.smith.langchain.com (EU); self-hosted follows https://<your-domain>/api/v1/otel.

Datadog

Send OTLP to a Datadog Agent (or an OpenTelemetry Collector with the Datadog exporter) that has OTLP ingestion enabled — the agent handles the Datadog API key, so the bridge needs no auth headers:

rocketride otel --endpoint http://localhost:4318

Datadog natively maps gen_ai.* semantic-convention attributes (semconv v1.37+) in its LLM Observability product, so LLM component spans light up without a Datadog SDK.

The span model

One trace per pipeline run. The hierarchy the bridge builds:

task <task name>                     task root span (INTERNAL), one per run
│ opened on apaevt_task begin (or the seeded
│ "running" snapshot when attaching mid-run)

└── <object name> pipe root span, one per (run, pipe id) segment
│ opened on flow op=begin, closed on op=end;
│ named after the object flowing through

├── chat component span (llm_openai_1)
│ │ SpanKind CLIENT, gen_ai.operation.name=chat,
│ │ gen_ai.provider.name=openai
│ └─ ● thinking apaevt_sse events attach as span events to the
│ innermost open span of their pipe

└── response_1 plain component span (INTERNAL)
opened on op=enter, closed on op=leave —
paired by component identity, one span per
lane write (including control lanes)

Runs are correlated primarily on the wire correlation id (__id, <token-prefix>.<source>), falling back to (project_id, source). A run first observed through events lacking __id is promoted to its canonical id when that id later arrives — never tracked twice. Details worth knowing:

  • enter/leave pairing is by component identity, never stack position (the monitor protocol documents why). Expect one short component span per lane write — including the open/closing/close control lanes.
  • Component spans still open at run end or bridge shutdown are closed with status UNSET and rocketride.span.unclosed=true — an honest "we never saw the leave", not an error.
  • Attaching mid-run: events for pipes the bridge never saw begin get an implicit root span marked rocketride.span.implicit=true.
  • Errors: a trace.error on a component leave event sets span status ERROR, records an exception span event, and sets error.type (_OTHER — the wire error is a free-form string). The error text is treated as payload: by default the status description is a generic component error and the exception event carries no message; with --include-content the wire error text is exported (8 KB cap).
  • Task restarts close the current spans and open a fresh task span with rocketride.task.restarted=true.
  • GenAI conventions: component ids map to GenAI semantic conventions where the id makes the role unambiguous — llm_*chat (CLIENT), embedding_*embeddings (CLIENT), agent_*invoke_agent (INTERNAL), tool_*execute_tool (INTERNAL, with gen_ai.tool.name). gen_ai.provider.name is set only for providers on the semconv well-known list (e.g. llm_openai_*openai, llm_anthropic_*anthropic); unknown providers omit the attribute rather than inventing a value.

Attributes

AttributeOnMeaning
rocketride.project_idall spans and metricsPipeline project id
rocketride.sourceall spans and metricsPipeline source (e.g. webhook_1)
rocketride.run_idall spansWire correlation id of the run (<token-prefix>.<source>)
rocketride.task.nametask spansTask name from the lifecycle event
rocketride.task.restartedtask spanstrue when this span was opened by a task restart
rocketride.pipe_idpipe/component spansPipe index within the pipeline
rocketride.objectpipe spansName of the object flowing through this segment
rocketride.componentcomponent spansComponent id (e.g. llm_openai_1)
rocketride.lanecomponent spansLane being written (e.g. text, open, close)
rocketride.flow.resultcomponent spansFlow result string on leave (e.g. continue)
rocketride.span.unclosedany spantrue: closed at run end/shutdown without a matching leave
rocketride.span.implicitpipe spanstrue: created for a pipe whose begin the bridge never saw
rocketride.flow.unmatched_leavespipe spansCount of leave events that matched no open component span
rocketride.sse.typespan eventsSSE message type (e.g. thinking, tool_call)
gen_ai.operation.nameLLM/agent/tool spanschat, embeddings, invoke_agent, or execute_tool
gen_ai.provider.nameLLM/embedding spansWell-known provider value derived from the component id
gen_ai.tool.nametool spansTool name derived from the component id
error.typefailed spansAlways _OTHER (wire errors are free-form strings)
rocketride.trace.data / rocketride.result / rocketride.sse.datacontent-gatedPayload content — only with --include-content, 8 KB cap

gen_ai.* names follow the July 2026 snapshot of the open-telemetry/semantic-conventions-genai registry (Development stability, no tagged release); deprecated names such as gen_ai.system or gen_ai.usage.prompt_tokens are never emitted.

Privacy: content is excluded by default

By default no pipeline payload content reaches any span — not lane data (trace.data), not run-segment results, not SSE message bodies, and not the free-form error text of failed components (node errors routinely quote their input; the error signalERROR status, error.type, the exception span event — still exports, with the generic description component error). Only structural metadata (names, ids, lanes, counts, timings) is exported, so the bridge is safe to point at a shared collector out of the box.

Opting in with --include-content copies payload content into the rocketride.trace.data, rocketride.result, and rocketride.sse.data attributes and exports the verbatim wire error text in span statuses and exception events — JSON-serialized and truncated to 8192 characters per attribute. Treat the flag as what it is: pipeline inputs and outputs flowing into your telemetry backend.

Metrics

Unless --no-metrics is set, every apaevt_status_update snapshot (roughly every 500 ms per running task) is mapped to OTel metrics, exported over the same OTLP endpoint. All instruments carry rocketride.project_id / rocketride.source attributes.

InstrumentTypeUnitMeaning
rocketride.objects.totalup-down counter{object}Objects seen by the pipeline run
rocketride.objects.completedup-down counter{object}Objects completed
rocketride.objects.failedup-down counter{object}Objects failed
rocketride.rate.countgauge{object}/sInstantaneous object processing rate
rocketride.rate.sizegaugeBy/sInstantaneous byte processing rate
rocketride.cpu.percentgauge%Engine CPU utilization
rocketride.cpu.percent.peakgauge%Peak engine CPU utilization
rocketride.memory.cpu_mbgaugeMByEngine CPU memory usage
rocketride.memory.cpu_mb.peakgaugeMByPeak engine CPU memory usage
rocketride.memory.gpu_mbgaugeMByEngine GPU memory usage
rocketride.memory.gpu_mb.peakgaugeMByPeak engine GPU memory usage

Object counters are fed per-run deltas between snapshots, so re-sent snapshots don't double-count; a task restart resets the engine's counts, which legitimately produces negative deltas. The snapshot's tokens.* block is compute credits (billing), not LLM tokens, and is deliberately not exported as gen_ai.usage.*.

Reconnection and shutdown

  • Reconnects use capped exponential backoff (1 s doubling up to 30 s). Monitor subscriptions are per-connection and not durable, but the SDK replays them on every reconnect, and the re-seeded "running"/status snapshots are handled idempotently — already-open spans are not duplicated. The seeded snapshot is also authoritative: tracked runs it no longer announces (their end was missed while disconnected) are closed with rocketride.span.unclosed=true and dropped.
  • Ctrl+C / SIGTERM closes all open spans (marked rocketride.span.unclosed=true), flushes both exporters, and exits 0.
  • Startup failure (engine unreachable, subscribe rejected) prints a clean message to stderr and exits 2 so supervisors can tell "never started" from "was stopped".

Embedding the bridge

rocketride.otelbridge.run_bridge() runs the same loop inside an application that owns its own event loop (pass install_signal_handlers=False when the application owns process signals). Two ownership rules matter there:

  • The bridge builds only the halves you did not supply. Pass mapper_factory and it builds no TracerProvider; pass metrics_factory and it builds no MeterProvider. Each provider carries a background export thread, so a half that is built and never read is a leaked thread, not just wasted setup.
  • Whatever the bridge builds, the bridge shuts down. A shutdown_fn you supply is chained in front of the providers' own shutdown, never substituted for it: yours runs first, theirs runs in a finally so it still happens if yours raises (your exception is logged to stderr and the bridge still exits 0). Supplying shutdown_fn therefore never orphans a provider the bridge created.

Troubleshooting

SymptomCause / fix
Exits immediately with code 2 and an install hintThe otel extra is missing: pip install 'rocketride[otel]'.
Bridge runs, tasks appear, but no component spansThe run was not started with a trace level. Start runs with client.use(..., pipelineTraceLevel='summary') — the bridge cannot enable it for you.
Exits with code 2, "connection" in the messageEngine unreachable at startup: check --uri / ROCKETRIDE_URI and --apikey / ROCKETRIDE_APIKEY.
Bridge runs but nothing arrives in the backendExporter can't reach the collector (exports fail in the background; the bridge keeps running). Check host/port — OTLP/HTTP is 4318, gRPC is 4317 — and that --protocol matches the receiver.
--protocol grpc fails with an install errorThe gRPC exporter is not part of the extra: pip install opentelemetry-exporter-otlp-proto-grpc. Note Langfuse does not accept gRPC at all.
Langfuse/LangSmith receive traces but metric exports errorTheir OTLP ingest is traces-only — run with --no-metrics.
Spans named chat carry no model name or token countsExpected — see Limitations.

Limitations

Honest edges of a protocol-level bridge:

  • Span timestamps come from the engine; metric points do not. Every forwarded event body carries eventTime (epoch seconds, stamped at ingress by the engine's run-log continuum), and spans and span events are stamped with it — so span durations are engine-measured and exclude WebSocket latency. Two edges remain: a span closed by a non-event path (bridge shutdown, snapshot reconciliation, or the tracked-run cap) and any event from an engine too old to stamp eventTime fall back to the bridge's own clock at that moment; and OpenTelemetry metric instruments take no explicit timestamp, so metric points are always recorded at arrival. A close is never stamped before its own span's start, so mixing the two sources cannot produce a negative duration.
  • LLM token usage and model names appear only when nodes surface them in events. Flow events at summary level carry neither, so gen_ai.request.model and gen_ai.usage.* are honestly omitted rather than guessed, and LLM span names degrade to the bare operation (chat, not chat gpt-4.1). The status snapshot's tokens.* are compute credits, not LLM tokens, and are never mapped to gen_ai.usage.*.
  • gen_ai.* conventions are Development stability. Attribute names follow the July 2026 snapshot of open-telemetry/semantic-conventions-genai; they are centralized in one constants module and may be revised as the spec evolves.
  • Trace level is the run starter's choice. --trace-level on the bridge is informational only; there is no protocol surface to change it for running tasks.
  • Restart accounting. Object up-down counters are per-run deltas, so a task restart (counts reset) produces a negative step by design.
  • Spans export when they close. The batch span processor exports a span only at end(), so a run whose end event is never observed holds its spans back until the bridge closes them — at the next reconnect's seeded snapshot (runs no longer announced are closed), when the tracked-run cap (1024) evicts the least-recently-eventful run, or at shutdown. Such spans are flagged rocketride.span.unclosed=true. There is deliberately no idle timeout: a quiet but alive task (e.g. a webhook service) keeps being announced and is never expired by a clock. Metric delta bookkeeping is likewise capped (4096 runs, least recently updated evicted first), so a bridge left running for weeks has bounded memory.

See also