Lightweight APM for OpenTelemetry
Lightweight APM dashboard for monitoring OpenTelemetry-based services. Instrument your applications using OpenTelemetry SDKs and send traces, metrics, and logs to Tempo for traces, a Prometheus-compatible database like Mimir for metrics, and Loki for logs.
Lightweight APM for OpenTelemetry
Instrument your applications using OpenTelemetry SDKs and send traces, metrics, and logs to Tempo for traces, a Prometheus-compatible database like Mimir for metrics, and Loki for logs. This dashboard provides a centralized view of your application’s health and performance.
For a fully managed observability stack, consider using Grafana Cloud.
Learn more about this dashboard here.
Setup
- Instrument services with OpenTelemetry SDK libraries and auto-instrumentation agents. Ensure the instrumentation produces:
- Traces
- Metrics: HTTP metrics, gRPC metrics, or Database Client Metrics
- Logs: optional
- Send generated telemetry (details in FAQ below):
- Traces to Grafana Tempo
- Metrics to a Prometheus database like Grafana Mimir
- Logs to Grafana Loki v3.0+ using the Loki OTLP/HTTP endpoint
- Ensure that a datasource is setup in Grafana for each of these Tempo, Prometheus, and Loki databases
- In Grafana, create the “OpenTelemetry Service” dashboard:
- Navigate to “Dashboards” then click on the “New / New dashboard” button
- Click on “Import a dashboard”
- On the “Import dashboard” screen, enter the ID
22784
then click on the “Load” button
FAQ
What are the compatible OpenTelemetry SDKs and auto-instrumentations
Dashboard mostly tested with the OpenTelemetry Instrumentation for Java, compatible with instrumentation that produce OpenTelemetry compliant traces, logs, HTTP metrics, gRPC metrics, or Database Client Metrics.
How to send OpenTelemetry traces, metrics, and logs to Grafana Tempo, Mimir, and Loki
Grafana Cloud
When using Grafana Cloud, follow the instructions of he Grafana Cloud documentation page OpenTelemetry > Send data to the Grafana Cloud OTLP endpoint.
Self managed Tempo, Mimir, and Loki
Example OpenTelemetry Collector configuration to send to self managed instances of Tempo, Mimir, and Loki:
Replace tempo.example.com
, mimir.example.com
, and loki.example.com
by the desired host names.
For production deployments, enable TLS security and remove insecure: true
.
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
processors:
batch:
exporters:
otlphttp/metrics:
endpoint: http://mimir.example.com:9090/api/v1/otlp
tls:
insecure: true
otlphttp/traces:
endpoint: http://tempo.example.com:4418
tls:
insecure: true
otlphttp/logs:
endpoint: http://loki.example.com:3100/otlp
tls:
insecure: true
debug/metrics:
verbosity: detailed
debug/traces:
verbosity: detailed
debug/logs:
verbosity: detailed
service:
pipelines:
traces:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/traces]
#exporters: [otlphttp/traces,debug/traces]
metrics:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/metrics]
#exporters: [otlphttp/metrics,debug/metrics]
logs:
receivers: [otlp]
processors: [batch]
exporters: [otlphttp/logs]
#exporters: [otlphttp/logs,debug/logs]
The drop down list for services is empty
TODO
Support
Please report issues on https://github.com/cyrille-leclerc/opentelemetry-service-dashboard.
License
Apache-2.0 license.
Data source config
Collector config:
Upload an updated version of an exported dashboard.json file from Grafana
Revision | Description | Created | |
---|---|---|---|
Download |