https://github.com/titouanc/lemur-influxdb
InfluxDB metric plugin for Lemur
https://github.com/titouanc/lemur-influxdb
influxdb lemur
Last synced: 22 days ago
JSON representation
InfluxDB metric plugin for Lemur
- Host: GitHub
- URL: https://github.com/titouanc/lemur-influxdb
- Owner: titouanc
- License: mit
- Created: 2018-04-13T08:01:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-16T18:14:10.000Z (about 7 years ago)
- Last Synced: 2025-02-08T13:30:08.197Z (3 months ago)
- Topics: influxdb, lemur
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lemur-influxdb
[InfluxDB](https://www.influxdata.com/) metric plugin for [Lemur](https://github.com/netflix/lemur).
## Installation
```
pip install -e git+https://github.com/titouanc/lemur-influxdb#egg=lemur-influxdb
```## Configuration
Add the following to your `lemur.conf.py`:
```python
# Add to active metric providers
METRIC_PROVIDERS = ['influxdb']# Set the following variables
INFLUXDB_HOST = "localhost" # Where's the InfluxDB server
INFLUXDB_PORT = 8086 # On which port is it listening
INFLUXDB_UDP = False # Whether to use the UDP protocol or http
INFLUXDB_DATABASE = "lemur" # Name of the database for lemur's metrics
```If any of the `INFLUX_*` variable is not set, it will use default
values. The declarations above show the default values.