Skip to content

Observability Quickstart

To enable telemetry, configure your environment to export data via OTLP:

Terminal window
OTEL_METRICS_EXPORTER=otlp
OTEL_TRACES_EXPORTER=otlp
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_EXPORTER_OTLP_PROTOCOL=grpc


Backlog metrics (pending_count and oldest_age_seconds) require heavy database queries. To prevent potential throughput impact, these are disabled by default.

Enable them by setting:

Terminal window
ENABLE_STATS=true

For a full list of available metrics and trace attributes, check the Diagnostics Reference.