grafana + clickhouse模板变量使用all

在使用dashboard的模板变量时,选择all时,如下clickhouse查询语句查询,无法解析正确执行:

sql 复制代码
SELECT orderId,OrderJsonStr FROM xdatabase."xxxx_table" WHERE   ( createTime  >= $__fromTime AND createTime <= $__toTime )  AND orderId IN (${orderId}) ORDER BY orderId DESC LIMIT 300

优化为:

sql 复制代码
SELECT orderId,OrderJsonStr FROM xdatabase."xxxx_table" WHERE   ( createTime  >= $__fromTime AND createTime <= $__toTime )  AND $__conditionalAll(orderId IN (${orderId:singlequote}), $orderId) ORDER BY orderId DESC LIMIT 300

可正常执行,选择all时语句变为 1=1

参考

ClickHouse Plugin for Grafana - 2.0 Release

相关推荐
爱上口袋的天空14 小时前
09 - Clickhouse的SQL操作
数据库·sql·clickhouse
晴天飛 雪18 小时前
Grafana监控PostgreSQL
数据库·postgresql·grafana
大虾别跑1 天前
docker安装zabbix +grafana
docker·zabbix·grafana
菜鸟挣扎史2 天前
grafana+prometheus+windows_exporter实现windows进程资源占用的监控
windows·grafana·prometheus·进程·process
tester Jeffky2 天前
JMeter监听器与压测监控之Grafana
jmeter·eureka·grafana
爱上口袋的天空3 天前
06 - Clickhouse的表引擎
数据库·clickhouse
吹老师个人app编程教学4 天前
ClickHouse的介绍、安装、数据类型
数据库·clickhouse·oracle
有被蠢哭到4 天前
Python连接Mysql、Postgre、ClickHouse、Redis常用库及封装方法
redis·python·mysql·clickhouse·postgresql
genghongsheng4 天前
执行flink sql连接clickhouse库
数据库·clickhouse·flink
爱上口袋的天空5 天前
04 - Clickhouse-21.7.3.14-2单机版安装
linux·服务器·clickhouse