Grafana 显示 MySQL 连接计数

Grafana show MySQL connections count

如何通过仪表板编写查询 运行 以获得 MySQL 活动连接?

有 MySQL 个查询,例如:

show status like 'Connections';

show status where `variable_name` = 'Threads_connected';

从 MySQL 控制台客户端

使用时会给出预期的结果

但是如果 Grafana 查询看起来像这样,如何使用它们:

SELECT
  date_time AS "time",
  interesting_data AS "measurement"
FROM test
WHERE
  $__timeFilter(date_time)
ORDER BY date_time

由于没有带有 date/time 戳记的 table 我想查询 我将 date_time 更改为 NOW():

  SELECT
  NOW() AS "time",
  6 as "connections";

并且仪表板显示了硬编码号码,但是如何使用真实查询来获取真实连接号码?

查询information_schema.processlist:

SELECT 
  NOW() AS "time", 
  count(*) AS "count"
FROM information_schema.processlist;