我有系列 s1(例如主机 1),分别有 2 列 cA(例如使用的内存)和 cB(例如使用的另一种类型的内存)。
如何获得一组点,这些点是添加 s1.cA 和 s1.cB 的结果。
我在这里查看了 influxdb 文档http://influxdb.com/docs/v0.7/api/query_language.html 但我无法理解他们的示例。
提前致谢。
我有系列 s1(例如主机 1),分别有 2 列 cA(例如使用的内存)和 cB(例如使用的另一种类型的内存)。
如何获得一组点,这些点是添加 s1.cA 和 s1.cB 的结果。
我在这里查看了 influxdb 文档http://influxdb.com/docs/v0.7/api/query_language.html 但我无法理解他们的示例。
提前致谢。
您应该能够运行select cA + cB from s1
,下面是对一些示例数据运行查询的屏幕截图:
由于您尝试添加来自具有不同时间戳的不同来源的数据,您可以按照以下步骤操作 -
Source A
1. Set the time series name
2. Set the coulmns (2 in your case)
3. Set the point of Source A, set 0 for source B
Source B
1. Set the time series name
2. Set the coulmns (2 in your case)
3. Set the point of Source B, set 0 for source A
带有数据的 JSON 请求将如下所示 -
{"name":"s1","columns":["cA","cB"],"points":[[0,1212],[123123123,0]]}