-
What Grafana version and what operating system are you using?
version": “7.5.3” -
What are you trying to achieve?
Plot time-series with Metric as IPv4 address and Value as a Count (int)
Query -
SELECT
UNIX_TIMESTAMP() as time,
ipv4_addr as metric,
total_hits as value
FROM
Table_A
ORDER BY “time” ASC
-
How are you trying to achieve it?
I created a time-series dashboard. Configured Mysql data source and issued the above query. -
What happened?
The query returns 100 data points; I see 100 dots on the graph vertically in the same line at the rightmost end of the graph. Line graph is not plotted and is not moving. It looks like below
-
What did you expect to happen?
A proper line graph to be plotted instead of single dot for every data point -
Can you copy/paste the configuration(s) that you are having problems with?
Query -
SELECT
UNIX_TIMESTAMP() as time,
ipv4_addr as metric,
total_hits as value
FROM
Table_A
ORDER BY “time” ASC -
Did you receive any errors in the Grafana UI or in related logs? If so, please tell us exactly what they were.
No errors -
Did you follow any online instructions? If so, what is the URL?
No