Hello,
I understand that when I use Chirpstack with InfluxDB, each object in the decoded JSON is stored on a separate table. Say, I have the following JSON:
{
objectJSON: {
“key_A”: val1,
“key_B”: val2
}
}
The integration will create two tables: device_frmpayload_data_key_A and device_frmpayload_data_key_B.
Is there a way to configure the integration so that it creates only one table with both key_A and key_B as columns?
Thanks!