Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Report

Under the dashboards components charting section you will find the Baseline component (see picture below).

...

Just drag and drop this component into a dashboard drop target.

Setup Report

In order to prepare the data you have to upload the baselineSpec.json file.

   

View file
namebaselineSpec.json
height250

Code Block
languagebash
titleUpload BaselineSpec
Curl –X POST –data-binary “@baselineSpec.json” http://192.168.180.116:58000/baseline/

 

Then restart the baseline service and this should pick up the new configuration.

Send Data

Data can be uploaded to the IoT API the data should be RSSI and it should be tagged by tunnel.

Code Block
languagejs
{ 
	UUID: device.serialNumber, 
	timestamp: date, 
	name: "RSSI", 
	value: 100, 
	msg_type: "datum", 
	latitude: 7.5, 
	longitude: 8.1,
    tags: {
		Tunnel: "dialer.0"
	}
}