A a library for querying prometheus and working with the data
Project 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()
```
===
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()
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
promalyze-0.0.1.tar.gz
(4.0 kB
view details)
File details
Details for the file promalyze-0.0.1.tar.gz
.
File metadata
- Download URL: promalyze-0.0.1.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2a0ddbc9ec133126bfc95ab08e85a281c9111a3b45c8df5b43c11d0b3a22b4df
|
|
MD5 |
44d7f507ec16658b5b9c1cf085f73a54
|
|
BLAKE2b-256 |
0504d52257b1984ea9280c47d7470627f67e9df83705f0203705af32e2951dee
|