Grafana Series - Unified Display - 10 - Explore Jaeger

This article was last updated on: May 17, 2026 am

Series Articles

Explore Jaeger

You can query and display Jaeger traces through Explore. There are 3 methods:

  • Query by search
  • Query by trace ID
  • Upload a JSON trace file

To use this method:

  1. Select Search from the Query type selector.
  2. Fill in the search form (essentially the same as the Jaeger UI):
Name Description
Service Returns a list of services.
Operation Appears when you select a service that has associated operations. Select all to query all operations.
Tags Set tags with values in logfmt format, e.g. error=true db.statement=“select * from User”.
Min Duration Filters all traces with a duration higher than the set value. Possible values are 1.2s, 100ms, 500us.
Max Duration Filters all traces with a duration lower than the set value. Possible values are 1.2s, 100ms, 500us.
Limit Limits the number of traces returned.

Jaeger query editor

Query by trace ID

To query a specific trace:

  1. Select the TraceID query type.
  2. Enter the trace ID in the Trace ID field.

Screenshot of the Jaeger query editor with TraceID selected

Upload a JSON trace file

JSON trace file example:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"data": [
{
"traceID": "2ee9739529395e31",
"spans": [
{
"traceID": "2ee9739529395e31",
"spanID": "2ee9739529395e31",
"flags": 1,
"operationName": "CAS",
"references": [],
"startTime": 1616095319593196,
"duration": 1004,
"tags": [
{
"key": "sampler.type",
"type": "string",
"value": "const"
}
],
"logs": [],
"processID": "p1",
"warnings": null
}
],
"processes": {
"p1": {
"serviceName": "loki-all",
"tags": [
{
"key": "jaeger.version",
"type": "string",
"value": "Go-2.25.0"
}
]
}
},
"warnings": null
}
],
"total": 0,
"limit": 0,
"offset": 0,
"errors": null
}

Is There a Jaeger Dashboard?

As of now (2023/5/8), there are no trace-related dashboards in the Grafana Dashboards registry — neither for Grafana Tempo nor for Jaeger.

However, I’ve noticed that some panels are suitable for trace dashboard visualization, such as:

  • Traces
    Traces panel
  • Node Graph
    Node Graph panel

Trace-related dashboards should be available in the near future. Looking forward to it!