Sampling and Scaling
Read Sampling Interval
On Change
Periodic
Scaling Factor
scaled_value = raw_value × scaling_factor
Write Interval (only for Write tags)
On Change
Periodic

Last updated
Was this helpful?
The Sampling and Scaling section controls when data is read or written and how raw values are converted to meaningful engineering units. These settings shape the cadence and fidelity of your collected measurements and, for write-enabled tags, how frequently outbound measurements are sent.
The read sampling interval applies to Read tags, and defines how the Data Connection is queried or subscribed to for new measurements.
Use On Change to receive updates as soon as the source changes. This is event-driven and ideal for low latency. However, if data changes at a high rate at the data source, it can potentially generate large amounts of data. &#xNAN;Availability: only connectors that support push/subscription semantics has this option (e.g., MQTT, OPC UA).
Use Periodic to poll the source at a fixed interval (e.g., every 1000 ms). This is useful when the source does not push updates or when you want a fixed data resolution. Keep intervals realistic for device and network capacity; extremely short intervals may overload field devices or networks. &#xNAN;Note: not all connectors support polling.
The scaling factor is a multiplier applied to raw values to convert them into different engineering units:
scaled_value = raw_value × scaling_factorExamples:
Converting t (tonnes) → kg: scaling factor = 1000
Converting kg → t (tonnes): scaling factor = 0.001
A scaling factor of 1 disables scaling.
Tips
Ensure the factor matches the units produced by the source so downstream consumers see consistent units.
Apply the factor once at collection to avoid double-scaling later in processing.

For Write tags, the write interval determines when new data points are sent to the destination Data Connection.
On Change writes immediately when the source tag provides a new measurement. Use this for near-real-time command/setpoint propagation.
Periodic writes the latest available measurement at the chosen interval, even if it hasn’t changed. Use this when receivers expect a heartbeat or regular refresh.

Last updated
Was this helpful?
Was this helpful?