I’am using Grafana 8.0.3 (docker-image)
I want to read selective data from a large table (3.6 GB).
The table has following structure:
Versuch-ID int(11)
timestamp timestamp
Lebensbit_Sp_PLS bit(1)
EI257039 float
EI257040 float
… (45 float rows follows)
The following query does not return any data:
SELECT
timestamp AS "time",
`TI308062-T2.1`
FROM DataManagement__20200430_223015
WHERE
timestamp BETWEEN FROM_UNIXTIME(1631507478) AND FROM_UNIXTIME(1631529078) AND
`Versuch-ID` = 98
ORDER BY timestamp
The same statement with MySQL Workbench delivers the following return values:
time TI308062-T2.1
2021-09-13 06:31:18 48.0612
2021-09-13 06:31:19 48.0612
2021-09-13 06:31:20 48.0612
2021-09-13 06:31:21 48.0612
…
No errors receive in the Grafana UI or in related logs
*Did you follow any online instructions? If so, what is the URL?
Yes, as best I could.