DigelDigel

OT data

How to send and process timeseries data

OT data

This is live, high frequency data commonly originating from a SCADA network. Timeseries have at least a timestamp and a value, but can also have metadata.

{
  "timestamp": "2024-06-12T09:00:00Z",
  "value": 100.0
}

Digel have a MQTT broker that you can send data into, all you need is to grab your token from the settings and send data to mqtt.digel.io:8883. This will automatically create the tags you need, and we will try to map the tags to existing machines.

mosquitto_pub -d -q 1 -h mqtt.digel.io -p 8883 -t v1/devices/me/telemetry -u "<token>" -m "{temperature:25}"

You can change the mappings in the process canvas if something is not mapped correctly.

On this page