Welcome to aiopromql’s documentation!
Contents:
Introduction
aiopromql is a minimalist Prometheus HTTP client for Python that supports both synchronous and asynchronous querying. It provides a clean, Pythonic model layer for Prometheus query responses and convenient helpers for mapping metrics into structured time series.
Features
Sync and async Prometheus client interfaces via
httpxPydantic models for Prometheus vector and matrix responses
Time series utilities and hashable metric keys
Zero dependencies outside of
httpxandpydantic
Quick Start
from aiopromql import PrometheusSync
client = PrometheusSync("http://localhost:9090")
resp = client.query('up')
metric_map = resp.to_metric_map()
for labels, series in metric_map.items():
print(f"Labels: {labels.dict}")
for point in series:
print(f" {point}")