Metadata-Version: 1.1
Name: promalyze
Version: 0.0.1
Summary: A a library for querying prometheus and working with the data
Home-page: https://github.com/parabuzzle/promalyze
Author: Michael Heijmans
Author-email: parabuzzle@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: Promalyze
        ===
        
        The library to get data out of Prometheus to analyze.
        
        # Install
        
        ```python
        pip install promalyze
        ```
        
        # Usage
        
        ```python
        from promalyze import Client
        
        client = Client('http://localhost:9090')
        
        ts_data = client.range_query('go_gc_duration_seconds') # returns PrometheusData object
        
        ts = ts_data.timeseries[0] # returns a TimeSeries object
        
        json_data = ts.as_json()
        
        dataframe = ts.as_pandas_dataframe()
        
        ```
        
Keywords: prometheus metrics data timeseries data science
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
