Grafana tooltip display value along with other text fields from the query
Asked Answered
F

0

6

I am using Grafana v8.3.5 + Postgres.

And using the Time Series line chart where I want to display the value the query is returning, but would like that the tooltip shows me other information.

select timestamp as "time", value, build, version, from size;
         timestamp          | build | version   | value 
----------------------------+-------+-----------+-------
 2022-04-24 06:50:10.933324 | 1.11  | 0.1_alpha | 265
 2022-04-24 06:50:45.15727  | 2.11  | 0.1_alpha | 280
 2022-04-24 06:50:52.535592 | 3.11  | 0.1_alpha | 273
 2022-04-24 06:52:12.885316 | 4.11  | 0.1_alpha | 224
...

graph example

Is it possible at all that the tooltip shows all this extra information (containing strings) besides the actual value? I tried to add a new query formatted as table, but it doesn't show up as a new series...

Friedland answered 1/7, 2022 at 11:48 Comment(2)
I have the same issue. Investigating but initial gut feel is that this is a limitation of the time series chart. grafana.com/docs/grafana/latest/panels-visualizations/…Strigose
There's a Grafana feature request for this github.com/grafana/grafana/issues/73989Appurtenance

© 2022 - 2024 — McMap. All rights reserved.