Skip to main content

Query a Prometheus server and get a Pandas DataFrame

Project description

PromQL HTTP API

This python package provides a Prometheus HTTP API client library. It encapsulates and simplifies the collection of data from a Prometheus server. One major feature of this library is that responses to queries are returned as Pandas DataFrames.

Prometheus

Installation

To install as a root user:

python3 -m pip install promql-http-api

To install as a non-root user:

python3 -m pip install --user promql-http-api

To uninstall:

python3 -m pip uninstall promql-http-api

Usage Examples

Here is a basic usage example:

from promql_http_api import PromqlHttpApi

api = PromqlHttpApi('http://localhost:9090')
q = api.query('up', '2020-01-01T12:00:00Z')
df = q.to_dataframe()
print(df)

On the first line we create a PromqlHttpApi object named api. This example assumes that a Prometheus server is running on the local host, and it is listening to port 9090. Replace this URL as needed with the appropriate URL for your server.

Next, we use the api object to create a Query object named q. The query() function takes two parameters: a query string and a date-time string.

To execute the query explicitly, without converting the result to a DataFrame, you can use:

# Execute the query explicitly
promql_response_data = q()

# Convert the cached result to a DataFrame
df = q.to_dataframe()

Alternately, by calling the to_dataframe() method alone, we will implicitly execute the query.

# Execute the query implicitly
df = q.to_dataframe()

Debugging

If something goes wrong, you can look at the HTTP response and the PromQL response information. Here are some examples:

from promql_http_api import PromqlHttpApi
api = PromqlHttpApi('http://localhost:9090')
q = api.query('up', '2020-01-01T12:00:00Z')
q()
promql_response = q.response
http_response = promql_response.response
print(f'HTTP response status code  = {http_response.status_code}')
print(f'HTTP response encoding     = {http_response.encoding}')
print(f'PromQL response status     = {promql_response.status()}')
print(f'PromQL response data       = {promql_response.data()}')
print(f'PromQL response error type = {promql_response.error_type()}')
print(f'PromQL response error      = {promql_response.error()}')

List of Supported APIs

API Method Arguments
/api/v1/query query() query, time
/api/v1/query_range query_range() query, start, end, step
/api/v1/format_query format_query() query
/api/v1/series series() match
/api/v1/labels labels()
/api/v1/label/<label_name>/values label_values() label
/api/v1/targets targets() state
/api/v1/rules rules() type
/api/v1/alerts alerts()
/api/v1/alertmanagers alertmanagers()
/api/v1/status/config config()
/api/v1/status/flags flags()
/api/v1/status/runtimeinfo runtimeinfo()
/api/v1/status/buildinfo buildinfo()

Testing

The package contains limited unit testing. Run the tests from the package top folder using:

pytest

Future work

Implement a CI/CD pipeline with a Prometheus instance in a Docker container to test API accesses.

If you use this library and would like to help - please contact the author.


References

Prometheus / HTTP API

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

promql_http_api-0.1.1.tar.gz (12.1 kB view hashes)

Uploaded Source

Built Distribution

promql_http_api-0.1.1-py3-none-any.whl (22.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page