Hasti
Hasti

Reputation: 13

Failure to display metrics in Grafana's time series

I use the following query (data source Trino) in Grafana 9, but in the timeseries, only the “value” values are displayed and the “metric” values are not displayed, is this a bug in Grafana 9 for the Trino plugin?

 SELECT
  $__timeGroup(FETCH_DATE, '1d'),
  SUM(ROWS_INSERTED) as value,
  task_name as metric
FROM
  zahraa.MONITORING
WHERE
  $__timeFilter(FETCH_DATE) 
GROUP BY $__timeGroup(FETCH_DATE, '1d'), task_name, STATUS
order by $__timeGroup(FETCH_DATE, '1d'), task_name, STATUS

Upvotes: 0

Views: 91

Answers (0)

Related Questions