diff options
author | Dimitri Staessens <dimitri@ouroboros.rocks> | 2021-07-03 13:12:35 +0200 |
---|---|---|
committer | Dimitri Staessens <dimitri@ouroboros.rocks> | 2021-07-03 13:12:35 +0200 |
commit | 24d9921de51f29dbef1ccabe330bb03774add9c3 (patch) | |
tree | a61a3d14f07d3c6056024f58486f37d3caa6ec70 /exporters-influxdb/pyExporter/config.ini.example | |
parent | 45bb5bd91489f9c4cd604aa80e06a64239e5ea0d (diff) | |
download | ouroboros-metrics-24d9921de51f29dbef1ccabe330bb03774add9c3.tar.gz ouroboros-metrics-24d9921de51f29dbef1ccabe330bb03774add9c3.zip |
exporters: Add InfluxDB exporter
Adds a simple exporter for InfluxDB written in Python.
Diffstat (limited to 'exporters-influxdb/pyExporter/config.ini.example')
-rw-r--r-- | exporters-influxdb/pyExporter/config.ini.example | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/exporters-influxdb/pyExporter/config.ini.example b/exporters-influxdb/pyExporter/config.ini.example new file mode 100644 index 0000000..f2656f7 --- /dev/null +++ b/exporters-influxdb/pyExporter/config.ini.example @@ -0,0 +1,6 @@ +[influx2] +url=http://localhost:8086 +org=<your-org> +token=<your-token> +timeout=6000 +verify_ssl=False
\ No newline at end of file |