Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 grafana 将温度从摄氏度转换为华氏温度,反之亦然。我尝试操纵f(y)价值,但我正在寻找更多的下拉用户控件来实现这一点。
f(y)
任何帮助表示赞赏!
使用 Sql 查询,现在temp_f将是您的华氏温度。
temp_f
select dt_created AS "time", temperature, humidity, ((temperature * 1.8) + 32) AS temp_f, from my_sensor ORDER BY dt_created
在查询部分,您可以使用脚本。单击选项按钮并在脚本字段中粘贴以下内容:
((_value * 1.8) + 32)