Metadata-Version: 1.0
Name: sql-to-graphite
Version: 0.0.6
Summary: A tool to send SQL results to Graphite
Home-page: http://github.com/philipcristiano/sql-to-graphite
Author: Philip Cristiano
Author-email: philipcristiano@gmail.com
License: BSD
Description: # SQL-to-Graphite
        
        A tool to easily send the results of SQL queries to Graphite!
        
        ## Installation
        
        ```
        pip install sql-to-graphite
        ```
        
        ## Running
        
        ```
        export S2G_DSN="mysq://username:password@host/db"
        cat queries.sql | sql-to-graphite --graphite-host graphite.example.com --graphite-prefix db.metrics
        ```
        
        The queries piped in should be a single query per line returning at least 2
        columns. The first column returned should be the metric name (minus the
        --graphite-prefix option) and the value.
        
        ```
        SELECT "metric", 1+1;
        SELECT "now", NOW();
        ```
        
Keywords: SQL Graphite
Platform: UNKNOWN
