繁体   English   中英

Grafana - 如何为 Mysql 数据源创建 sql 查询部分变量/宏

[英]Grafana - How to create sql query part variable/macro for Mysql datasource

我在由 MySql DataSource 支持的 Grafana 中有以下查询。

SELECT
  $__timeGroupAlias(ts,$__interval),
  sum(total) AS "total"
FROM hp
WHERE
  $__timeFilter(ts) 
  AND customer_type IN ($CustomerType) AND age IN ($age) AND gender IN ($gender)
GROUP BY 1
ORDER BY $__timeGroup(ts,$__interval)

Dashboard 中有多个 singleStat/panel/graphs,它们使用不同的选择参数,但 WHERE 条件在所有这些参数中保持相同。

我想将条件保留为单独的常量变量,以便我可以在每个查询中只添加该变量。

我试图像这样构建我的查询。

SELECT
  $__timeGroupAlias(ts,$__interval),
  sum(total) AS "total"
FROM hp
$where_condition
GROUP BY 1
ORDER BY $__timeGroup(ts,$__interval)

并声明where_conditionWHERE $__timeFilter(ts) AND customer_type IN ($CustomerType) AND age IN ($age) AND gender IN ($gender)

但是查询失败,因为内部变量 ($CustomerType,$age,$gender) 没有被查询生成器解析,生成的查询看起来像这样。

SELECT
  UNIX_TIMESTAMP(ts) DIV 900 * 900 AS "time",
  sum(total) AS "total"
FROM hp
ts BETWEEN FROM_UNIXTIME(1548311714) AND FROM_UNIXTIME(1548398114) 
AND customer_type IN ($CustomerType) AND age IN ($age) AND gender IN ($gender)
GROUP BY 1
ORDER BY UNIX_TIMESTAMP(ts) DIV 900 * 900

有没有办法解析包含在其他变量中的变量。 或者有没有其他方法可以将包含变量的查询部分外部化?

constant变量类型只生成静态字符串。 它没有替换任何变量。 切换到query类型并使用 MySQL 返回字符串,该字符串将为您的where_condition变量提供准确的字符串值。 询问:

SELECT 'WHERE $__timeFilter(ts) AND customer_type IN ($CustomerType) AND age IN ($age) AND gender IN ($gender)'

恕我直言:变量替换也适用于constant类型。 您可以打开该https://github.com/grafana/grafana/issues 的功能请求。

我也有引号问题,这是我的解决方案,支持“全部”和许多选择:

SELECT '
task_run_table.is_system = false 
AND 
(
    ''__all__'' = ''${user:raw}''
    OR 
    task_run_table.user  = any ( string_to_array(''${user:raw}'', '','')::text[])
)
AND 
(
    ''__all__'' = ''${job:raw}''
    OR 
    task_run_table.job_name  = any ( string_to_array(''${job:raw}'', '','')::text[])
)
' 

All值都被覆盖为__all__ 它是这样使用的:

SELECT 
  $__timeGroup(task_run_table.start_time, '$interval', NULL),
  task_run_table.name AS metric,
  COUNT(*) AS value
FROM
  task_run_table
WHERE 
  $__timeFilter(task_run_table.start_time) 
  AND 
  ${default_filter:raw}
  AND 
  task_run_table.state = $state
GROUP BY time, task_run_table.name
ORDER BY time, value DESC

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM