An influxdb backend for Graphite-web (source or 0.10.x) or graphite-api.
pip install graphite_influxdb
In your graphite-api config file:
finders: - graphite_influxdb.InfluxdbFinder influxdb: host: localhost port: 8086 user: graphite pass: graphite db: graphite
In graphite's local_settings.py:
STORAGE_FINDERS = (
'graphite_influxdb.InfluxdbFinder',
)
INFLUXDB_HOST = "localhost"
INFLUXDB_PORT = 8086
INFLUXDB_USER = "graphite"
INFLUXDB_PASS = "graphite"
INFLUXDB_DB = "graphite"