Item parameter contains the configuration and information of how to communicate to a certain destination on a parent instance such as variable, tunnel, backend, plc tag and data point. Each item can be configured to follow some defaults which was set when adding the parent instance such as reading interval and store time but they can also be configured individually.
General
The general parameters are everything that relates to the instance such as address and description.
Parameter | Description |
---|---|
Name | Name of the item such as "Bottle counter" if the item describes a variable that counts bottles in factory or "Device-to-cloud" if the item is a tunnel to the cloud. |
Unique ID | Unique ID (UID) is a unique reference to an item or instance. The UID can be referred to in various places such as parameters, mappings and scripting by calling it by %UID%. E.g. calling the name of an item where BOTTLE_CNT is the UID is done by %BOTTLE_CNT.NAME%. |
Description | Description of the item. E.g. "Bottle counter for Machine 5" or "Data ingest backend" |
Unit | Unit of the measured value. E.g. "bottles", "kWh" |
Enabled | Enable or disable the item |
Read write |
Defines if the item is a read only, write only or read-write. The user interface will change accordingly for the item reflecting the specific setting.
|
Setup
The setup parameters are parameters that relates to reading, storage and how SIA should handle it. These parameters will also be used as the default for the items when you are creating items under the instance.
Parameter | Description |
---|---|
Mode |
Selects what mode the item should use:
|
Read interval |
Sets the interval in which SIA Connect should poll for data:
|
Store time |
Store time for the logged data. After the data for the item have been kept in history for the given time it will be deleted. |
Max samples to store |
The amount of data samples to store in the history for an item. This is a FIFO buffer, so when the amount is reached the oldest data samples will be deleted. |
Trigger behaviour |
The trigger defines when a data sample is triggering the execution of a mapping or when the sample are triggered to be stored in the history.
|
Minimum interval | A cyclic interval that defines when to update and sample values in case the Trigger behaviour have not triggered an update. As an example. Trigger behaviour is set to All changes and Minimum interval is set to 2 minutes. If no update on the value have occurred in the 2 minutes the system will force a update of the value each 2 minute or 2 minutes after the latest trigger have occurred. |
Input template |
When data is written to the item, the input template is applied to the raw data. This is used when creating payloads or insert statements with SIA Connect scripting variables |
Post-processing | The readings of data samples can processed afterwards to apply logic or math. The post-processing can be used to scale the values or apply logic operations through scripting in JavaScript syntax. Please refer to Use post-processing of samples for further information and examples |