Hi there,
I am using mssql as datasource, for a timeseries graph panel. Everytime I load the dashboard the following error is appearing:
The query I am using (below) is already identified as time with “SQL Alias Time” I would like to know what might be causing this issue. The column Timestamp returns a DATETIME SQL Server and when I try to use a macro like $__timeEpoch(Timestamp) the query usually doesn’t return.
So I need some help regarding how can I get it right or if is this some kind of issue that might be reported as in git?
Version: Grafana v6.2.0
SELECT
h.Timestamp AS time,
h.ResponseTime as value,
h.PercentLoss,
n.SysName as metricFROM
ResponseTime_CS_cur as h,
NodesData as n
WHERE
Timestamp >= DATEADD(day,-3, GETDATE())
ORDER BY Timestamp ASC
Thanks !