原始需求: 目前已经用 IPMI 收集了服务器的温度数据,tag 为 host ,value 为 temperature 数值 想要展示“最热的那台”的温度和主机名
我用 select host, max(value) from ipmi_values where type='temperature' and type_instance=~/CPU/ and time >= now()-5m 条件可以查出来一个 max 和一个 host
但是 1 我不知道怎么在 grafana panel 里同时展示这个 value 和 tag value 2 上述查询,也只能在 raw mode 里输入; editor mode 不允许我一个查询 select 两个东西出来