Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.02 KB

README.InfluxDB.md

File metadata and controls

27 lines (17 loc) · 1.02 KB

InfluxDB api

vzlogger can send measurements to a InfluxDB server.

Configuration

Set "api" to"influxdb" to use the InfluxDB API.

"host" is the IP address or hostname of the InfluxDB server in the format 127.0.0.1:8086

"uuid" is the unique channel ID. Use the uuid or uuidgen command to generate one.

For optional parameters such as username or password have a look at the example config file is available at etc/vzlogger.conf.InfluxDB

Message Format

Messages are sent in the following format:

<measurement_name>,uuid=, value= <time[ms]>

In the above, measurement_name, tags and uuid are from the configuration while value and time[ms] are value and time of the measurement.

Details about this can be found in the InfluxDB line protocol tutorial