Hello everyone,
I am running into problems sending my JSON data into InfluxDB. My JSON is being pulled in via MQTT in this format:
[
{
"measurement": "sensor data"
},
{
"tags": {
"location": "eic",
"sensor": "sentry pro"
}
},
{
"time": 1566329777.4187512
},
{
"fields": {
"Temperature_F_Reference": [
72.05
],
"Time_Reference": [
213.0
],
"Real_Ohms_Working_1K": [
67.659
],
"Real_Ohms_Working_300": [
89.2325
],
"Working_Probe": [
"Working"
],
"Frequency_Working_1K": [
1000.0
],
"Cap_Working_300": [
13.5837
],
"Frequency_Working_300": [
300.0
],
"Img_Reference_300": [
43.909
],
"Real_Ohms_Reference_1K": [
56.466
],
"Img_Working_1K": [
17.5842
],
"Real_Ohms_Reference_300": [
81.5604
],
"Frequency_Reference_1K": [
1000.0
],
"Img_Working_300": [
39.0554
],
"Reference_Probe": [
"Reference"
],
"Cap_Working_1K": [
9.051
],
"Img_Reference_1K": [
22.4024
],
"Time_Working": [
210.0
],
"Temperature_F_Working": [
72.05
],
"Temperature_C_Working": [
22.25
],
"Cap_Reference_300": [
12.0822
],
"Frequency_Reference_300": [
300.0
],
"Temperature_C_Reference": [
22.25
],
"Cap_Reference_1K": [
7.104
]
}
}
]
This is what the dubug is showing coming in after I decode the JSON.
This is what the flow looks like hooked up to the debug.
I am at a loss on what I need to adjust for the data to be accepted into InfluxDB.
Thanks for all of the help,
Derick