mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-06 18:26:51 +00:00
fix(telemetry): correct close-time legend label key to resource.service.instance.id
The Raw Proposals and Effective/Quantized panels rendered nameless
series: their legendFormat used {{service.instance.id}}, but the
TraceQL metrics query groups by resource.service.instance.id and Tempo
returns that full key as the series label. The legend token did not
match any label, so each series showed blank. Use the matching
{{resource.service.instance.id}} token.
Verified via the Grafana datasource proxy that all six close-time panels
now return correctly-labelled series.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -430,7 +430,7 @@
|
||||
},
|
||||
"queryType": "traceql",
|
||||
"query": "{name=\"consensus.accept.apply\" && resource.service.instance.id=~\"$node\"} | avg_over_time(span.close_time_self) by (resource.service.instance.id)",
|
||||
"legendFormat": "{{service.instance.id}}",
|
||||
"legendFormat": "{{resource.service.instance.id}}",
|
||||
"refId": "A"
|
||||
}
|
||||
]
|
||||
@@ -475,7 +475,7 @@
|
||||
},
|
||||
"queryType": "traceql",
|
||||
"query": "{name=\"consensus.accept.apply\" && resource.service.instance.id=~\"$node\"} | avg_over_time(span.close_time) by (resource.service.instance.id)",
|
||||
"legendFormat": "{{service.instance.id}}",
|
||||
"legendFormat": "{{resource.service.instance.id}}",
|
||||
"refId": "A"
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user