Hello everyone,
Im newbie with grafana and searching for litlle help. On next picture you can see my current graph / using default grafana graph from grafana dashboards/. Everything is working awesome. I have some data here ordered by timestamp, but is it possible to add to the graph also “dovod_spustenia and komentar”? Datatype in sql database for both is in textformat.
current query for graph
SELECT
UNIX_TIMESTAMP(DATUMCAS) as time_sec,
TEPLOTA_UL1 as ul_hore,
TEPLOTA_UL2 as ul_dole,
VLHKOST as vlhkost,
BATERKA as baterka,
VAHA as vaha
FROM ul1
WHERE $__timeFilter(DATUMCAS)
ORDER BY DATUMCAS ASC