Hi,
[1] Platform all windows
laptop A: paho-mqtt-cpp [client, 1883, TLS/SSL off]
laptop A: mosquitto broker [broker]
laptop B: Grafana server windows
laptop B: mqtt-datasource compiled on windows x64
==working data==
Topic: topic_name
an integer value
image::
NOT working::
Topic: topic name
{value1:an integer number,value2:an integer number}
As per mqtt-datasource, the working format is
{
"value1": 1.0,
"value2": 2,
"value3": 3.33,
...
}
however, i am not able to get the JSON format working, mentioned in the github.
please let me know if how to parse JSON and visualize each of the 2 contents.
Thanks