如果我一次从我的频道中的 IoT 设备接收数据记录作为 JSON 数组。收到的消息如下所示:
{
"state":{
"reported":{
"temperature": 24.28,
"humidity": 37.67,
"pressure": 1019.57,
"proximity": 1485
}
}
}
数据存储是:
{
reported = {
temperature = 24.28,
humidity = 37.67,
pressure = 1019.57,
proximity = 1485
}
}
我想要的结果是:
temperature humidity pressure proximity
Value1 Value2 Value3 Value4
AnotherValue1 AnotherValue2 AnotherValue3 AnotherValue4
如何让 IoT Analytics 在数据存储中为接收到的 JSON 数组中的每个元素创建一个新行?