我在由 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_condition
为WHERE $__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
有没有办法解决其他变量中包含的变量。或者有没有其他方法可以将包含变量的查询部分外部化?