OpenMTC/apps/InfluxDB
2018-01-30 17:20:19 +01:00
..
bin add influxDB Application 2018-01-30 17:20:19 +01:00
docker add influxDB Application 2018-01-30 17:20:19 +01:00
etc add influxDB Application 2018-01-30 17:20:19 +01:00
src/influxdb add influxDB Application 2018-01-30 17:20:19 +01:00
config.json add influxDB Application 2018-01-30 17:20:19 +01:00
MANIFEST.in add influxDB Application 2018-01-30 17:20:19 +01:00
README.md add influxDB Application 2018-01-30 17:20:19 +01:00
setup-influxdb.py add influxDB Application 2018-01-30 17:20:19 +01:00
utils.py add influxDB Application 2018-01-30 17:20:19 +01:00

InfluxDB

This App will subscribe to OpenMTC data and tranfer it to an instance of the InfluxDB.

Run the app

You need a running instance of InfluxDB and configure the following parameters according to your setup.

apps/influx-db \
    --ep "http://127.0.0.1:8000" \
    --influx_host "127.0.0.1" \
    --influx-port "8086" \
    --influx-user "root" \
    --influx-password "secret" \
    --db-name "example" \
    --db-user "root" \
    --db-pw "secret"

Data Model

Entries in the InfluxDB are organized by measurement, time, fields and tags. Data is transfered from OpenMTC like shown below:

  • measurement: data_senml["n"] (example: vehiclecount)
  • time: data_senml["t"]
  • tags:
    • application name (example: loadgen)
    • device name (example: parking_space)
    • sensor name (example: totalspaces)
    • sensor labels (example: "openmtc:sensor")
    • device labels (example: "openmtc:device")
  • fields:
    • value: data_senml["v"]
    • bn: data_senml["bn"]
    • unit: data_senml["u"]