Versions Compared

Key

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

...

It is recommended to add the connPingFreq tag to all of the connectors. This tag is used to monitor the health of the device and keeps it open. When this tag is configured the connector will automatically attempt a ping based on the configured frequency. For connectors which might not have watched points this ensures periodic checks of the connectivity status. Below is a query that can be used to add this to all connectors. It is a duration type tag set to 1min.

Code Block
readAll(conn and not connPingFreq).map x => diff(x, {connPingFreq:1min}).commit

...