Metadata-Version: 1.1
Name: graphite-influxdb
Version: 0.1.2
Summary: Influxdb backend plugin for graphite-web and graphite-api
Home-page: https://github.com/vimeo/graphite-influxdb
Author: Dieter Plaetinck
Author-email: dieter@vimeo.com
License: apache2
Description: Graphite-InfluxDB
        =================
        
        An influxdb backend for Graphite-web (source or 0.10.x) or graphite-api.
        
        Installation
        ------------
        
        ::
        
            pip install graphite_influxdb
        
        Using with graphite-api
        -----------------------
        
        In your graphite-api config file::
        
            finders:
              - graphite_influxdb.InfluxdbFinder
            influxdb:
               host: localhost
               port: 8086
               user: graphite
               pass: graphite
               db:   graphite
        
        Using with graphite-web
        -----------------------
        
        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"
        
Platform: any
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: System :: Monitoring
