I am trying out a simple scenario, reading sensor data from mqtt (json formatted), and pushing it into an influxdb bucket.
messages look like this:
{"time": "2022-03-12T07:19:32Z", "temperature": 19.1875, "sensors": 3, "humidity": null}
on the mqtt node I have the output set as "a parsed json object" and indeed I see this as an object in a a debug node.
However when I pipe this into an InfluxDB node I get the following message:
"HttpError: unable to parse 'house sensors=3,temperature=19.20833 2022-03-12T07:17:32Z': bad timestamp"
The measurement is called "house".
Any suggestions on how to get this working?