How to create a IoT Core Rule to save a JSON list of objects to timestream

0

Hi,

I run a RaspberryPi with different temperature sensors on it. I collect all sensor data and send them to IoT Core. In the MQTT Test-Client I can also subscribe to the message and see the following output:

[ { "sensor_id": "28-011921dac0de", "value": 20.937 }, { "sensor_id": "28-3ce10457469c", "value": 59.5 }, { "sensor_id": "28-011921d74ee8", "value": 46.812 }, { "sensor_id": "28-3ce104579319", "value": 45.375 } ]

  1. Is it a bad idea to send all sensore datas in one message?
  2. How do I have to define the rule to send this message to TimeStream? At the end I want to visualize/analyze each temperature value.

Thank you

已提問 1 年前檢視次數 573 次
3 個答案
1

Hi Philipp,

  1. It is not a bad idea, quite the contrary. By batching the readings from multiple sensors in one single message you are reducing the amount of message considerably
  2. The IoT Rule Timestream action does not support inserting records with different dimensions (in your case the sensor_id would be a dimension), but you can send the message payload to a Lambda function and have the Lambda function write the records in Timestream. You can have a look at this repo on how to write such Lambda function: https://github.com/massi-ang/amazon-timestream-app
AWS
專家
已回答 1 年前
0

Regarding the first question, there is no right way to send the data, it all depends on your use case and your expected results. Regarding the second question. Check this tutorial about Ingesting Data into Amazon Timestream with AWS IoT Core.

AWS
David C
已回答 1 年前
  • I added a key to my array now:

    { "sensors": [ { "sensor_id": "28-011921dac0de", "value": 58.937 }, { "sensor_id": "28-3ce10457469c", "value": 59.562 }, { "sensor_id": "28-011921d74ee8", "value": 58.0 }, { "sensor_id": "28-3ce104579319", "value": 46.375 } ] }

    My SQL query looks like that now: SELECT (SELECT sensor_id, value from sensors) as output FROM 'test/testing'

    As a dimension I selected "sensor_id": $(sensor_id) but It is just writing into timestream the string $(sensor_id)

    Why?

0

It seems to be impossible with just a SQL statement:

See here for more details: https://stackoverflow.com/questions/74090199/aws-iot-rule-sql-republish-get-thing-name-as-json-object-key

已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南