Skip to main content
Choose the provider/framework your application already uses, or use OpenTelemetry OTLP ingest if you already have OTEL in your stack.

Supported integrations

More integrations

OpenTelemetry (OTLP ingest)

If you already use OpenTelemetry, you can export OTLP traces directly to Latitude.
  • URL (Latitude Cloud): https://gateway.latitude.so/api/v3/traces
  • Auth: Authorization: Bearer YOUR_API_KEY
  • Formats: OTLP Protobuf (application/x-protobuf) or OTLP JSON (application/json)
Example (OpenTelemetry Collector):
receivers:
  otlp:
    protocols:
      grpc:
      http:

exporters:
  otlp_http/latitude:
    traces_endpoint: https://gateway.latitude.so/api/v3/traces
    headers:
      Authorization: Bearer ${LATITUDE_API_KEY}

service:
  pipelines:
    traces:
      receivers: [otlp]
      exporters: [otlp_http/latitude]
If you are self-hosting, replace the hostname with your Gateway base URL.