Skip to main content

InfluxDB

The InfluxDB connector is an enterprise connector for writing time-series values to an InfluxDB instance.

Connection settings

SettingDescription
URLBase URL of the InfluxDB server.
DatabaseDatabase to write to.
UsernameUsername for the InfluxDB connection.
PasswordPassword for the InfluxDB connection.

Reniway InfluxDB defaults

Reniway can be shipped with its own InfluxDB instance. The default bundled values are:

SettingValue
URLhttp://influxdb:8086
DatabasePLCData
Usernamepatron
PasswordRonpat10

Adding properties

InfluxDB properties are typically configured as output properties.

The property name becomes the InfluxDB measurement name. Reniway writes the incoming value to a fixed field named value.

Runtime behavior

When a linked bridge property or data mapper property changes, Reniway writes a line protocol point to InfluxDB:

  • measurement: the bridge property name
  • field: value
  • timestamp: the source timestamp when available

Notes

  • The connector checks InfluxDB health when starting.
  • This connector is designed for time-series output scenarios rather than database querying.