我正在使用 Grafana v8.0.5 并尝试使用自定义选择查询构建基于 MySQL 数据源的面板。我的要求是在行数超过 5 时提醒我。我尝试了很多方法让它工作,但没有运气。有人可以帮我实现这个要求吗?
询问:
SELECT `id`,
`org_id`,
`profile_name`,
`command`,
`ip_port`,
`run_status`,
`total_records`,
`total_records_written`,
`start_datetime`,
`completed_datetime`,
TIMEDIFF(`completed_datetime`, `start_datetime`) AS total_sync_time
FROM
`logdb-dev`.`process_table` WHERE `run_status` = 'failed' AND DATE(`start_datetime`) = CURDATE()
ORDER BY `org_id` ASC;