I can any one help me why I am getting this error in Grafana.
ERROR- Found row with no time value.
I can any one help me why I am getting this error in Grafana.
ERROR- Found row with no time value.
We are releasing Grafana 4.5 today/tomorrow which will include the full version of the MySQL plugin. It is also available in the current nightly build: https://grafana.com/grafana/download/4.5.0-8797pre1
I have the same error: “Found row with no time value” with a time series format.
I am hosting on grafana.net for my tests.
If I take the query from the Generated SQL query, and run in from the shell, the query runs fine.
What does your query look like? And what does the table schema look like? There are two reasons this error can occur:
Thank you for the help, my issue was due to my time_sec field formatting.
select UNIX_TIMESTAMP(bb.timestamp), bb.timestamp from bb limit 1;
±-----------------------------±---------------------------+
| UNIX_TIMESTAMP(bb.timestamp) | timestamp |
±-----------------------------±---------------------------+
| 1508494191.882357 | 2017-10-20 10:09:51.882357 |
±-----------------------------±---------------------------+
With the seconds (1508494191) it worked as expected.