【发布时间】:2020-10-24 02:57:15
【问题描述】:
Grafana Log Panel 期望从数据源获得什么样的数据? 文档只字未提。 https://grafana.com/docs/grafana/latest/panels/visualizations/logs-panel/
Gauge / Graph stucture 不工作,其他领域也不适合我
SELECT
le.Date as time,
123 as value,
'xxx' as metric
FROM [LogEntry] le
WHERE
$__timeFilter(le.Date)
ORDER BY
le.Date ASC
我希望它可以与下面的查询一起使用,至少显示日期和文本应该是微不足道的。
SELECT
le.Date as time,
'anything' as text
FROM [LogEntry] le
WHERE
$__timeFilter(le.Date)
ORDER BY
le.Date ASC
【问题讨论】:
标签: sql-server grafana