Quickstart
If you already have OpenTelemetry in your environment, point your collector at Tracefox.
1) Configure your collector
exporters:
otlphttp/tracefox:
endpoint: https://YOUR_TRACEFOX_INGEST_HOST
headers:
x-api-key: YOUR_INGEST_API_KEY
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/tracefox]
logs:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/tracefox]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/tracefox]
2) Verify ingestion
- Send a trace/log/metric and confirm it appears in Tracefox Search.
- If you get 401s, verify the API key and header name.
- If you get 404s, verify the signal paths are
/v1/traces,/v1/logs,/v1/metrics.