Edge Data Tag Options

Here a list of options that can be supplied, all options must be supplied as a json string. e.g.

{"option1":"value1", "option2":"value2"}	

scale

This will allow you to scale the value by a supplied factor.

e.g. {"scale": 1000} - will multiple the raw value read by 1000

{"scale": 0.001} - will divide the raw value read by 100

rollover

Use this option if the tag you are reading has a rollover value, this will assist the COUNT_TOTAL template in understanding what to do when the count resets back to zero. For example, a tag has a rollover of 100, when edge reads the tag for the first time it is 95, and the next time it is 5. Using the rollover, it will calculate the correct difference of 10.

e.g. {"rollover": 1000} - will set the rollover to 1000

Last updated