Pandas integration for Prometheus
Project description
Prometheus Pandas
Python library for querying Prometheus and accessing the results as Pandas data structures.
This is mostly intended for use in Jupyter notebooks. See Prometheus.ipynb for an example.
Example
Evaluate an instant query at a single point in time:
>>> from prometheus_pandas import query
>>>
>>> p = query.Prometheus('http://localhost:9090')
>>> p.query('node_cpu_seconds_total{mode="system"}', '2020-05-10T00:00:00Z')
node_cpu_seconds_total{cpu="0",instance="localhost:9100",job="node",mode="system"} 15706.47
node_cpu_seconds_total{cpu="1",instance="localhost:9100",job="node",mode="system"} 15133.25
node_cpu_seconds_total{cpu="2",instance="localhost:9100",job="node",mode="system"} 15095.59
node_cpu_seconds_total{cpu="3",instance="localhost:9100",job="node",mode="system"} 14649.20
dtype: float64
Evaluates an expression query over a time range:
>>> from prometheus_pandas import query
>>>
>>> p = query.Prometheus('http://localhost:9090')
>>> print(p.query_range(
'sum(rate(node_cpu_seconds_total{mode=~"system|user"}[1m])) by (mode)',
'2020-10-05T00:00:00Z', '2020-10-05T06:00:00Z', '1h'))
dtype: float64
---
{mode="system"} {mode="user"}
2020-10-05 00:00:00 0.022667 0.038222
2020-10-05 01:00:00 0.015333 0.036667
2020-10-05 02:00:00 0.028000 0.040667
2020-10-05 03:00:00 0.015111 0.034889
2020-10-05 04:00:00 0.015556 0.038000
2020-10-05 05:00:00 0.018444 0.040222
2020-10-05 06:00:00 0.018222 0.035111
Customizing the HTTP request:
>>> import requests
>>> from prometheus_pandas import query
>>>
>>> http = requests.Session()
>>> http.cert = '/path/client.cert'
>>> http.verify = '/path/to/certfile'
>>>
>>> p = query.Prometheus('http://localhost:9090', http)
>>> print(p.query('node_cpu_seconds_total{mode="system"}', '2020-10-05T00:00:00Z'))
node_cpu_seconds_total{cpu="0",instance="localhost:9100",job="node",mode="system"} 3954.92
dtype: float64
Installation
Latest release via pip
:
pip install prometheus-pandas [--user]
via Git:
git clone https://github.com/dcoles/prometheus-pandas.git; cd prometheus-pandas
python3 setup.py install [--user]
Licence
Licenced under the MIT License. See LICENSE
for details.
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
Built Distribution
File details
Details for the file prometheus-pandas-0.3.3.tar.gz
.
File metadata
- Download URL: prometheus-pandas-0.3.3.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5e69398dba2ddc022b0a12104c1293aff949dd259c1be0618ad8cefac62cbb9 |
|
MD5 | 6df7f0567805f4b939faa5e68b027975 |
|
BLAKE2b-256 | 0e32cc52d78fcda4fad3149bce4f3f215834b31aa394db35bf0cb40404b7237f |
File details
Details for the file prometheus_pandas-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: prometheus_pandas-0.3.3-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58ec3d33f8896f0fbbb6b75a8646610aca5e3d6dfca63db062c1c5890b74e8e7 |
|
MD5 | e44aac07d6a04fa95b56e66fc7db63bd |
|
BLAKE2b-256 | 2acd7b6d6c44e5942d6bcdfce3dc02628f50de12c5194504a2af612913b47149 |