Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Send OTel traces and metrics directly to Traceback via standard OTLP endpoints.
otel-collector-config.yaml
receivers: otlp: protocols: grpc: http: exporters: otlphttp/traceback: endpoint: "https://otlp.traceback.dev" headers: Authorization: "Bearer ${TRACEBACK_API_KEY}" service: pipelines: traces: receivers: [otlp] exporters: [otlphttp/traceback]
import { NodeSDK } from "@opentelemetry/sdk-node"; import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp-http"; const sdk = new NodeSDK({ traceExporter: new OTLPTraceExporter({ url: "https://otlp.traceback.dev/v1/traces", headers: { Authorization: `Bearer ${process.env.TRACEBACK_API_KEY}`, }, }), }); sdk.start();