What kind of data Grafana Log Panel expects from data source? Documentation does not say a word about it. /docs/grafana/next/visualizations/logs-panel/
Gauge / Graph query stucture does not work, other fields does not work for me too
SELECT
le.Date as time,
123 as value,
'xxx' as metric
FROM [LogEntry] le
WHERE
$__timeFilter(le.Date)
ORDER BY
le.Date ASC
I expect it to work with something like query below, at least displaying date and text should be trivial.
SELECT
le.Date as time,
'anything' as text
FROM [LogEntry] le
WHERE
$__timeFilter(le.Date)
ORDER BY
le.Date ASC