Async helpers for prometheus_client.
Project description
prometheus_async adds support for asynchronous frameworks to the official Python client for the Prometheus metrics and monitoring system.
Currently asyncio (Python 3.4, 3.5, 3.6) and Twisted (Python 2.7, 3.4, 3.5, 3.6, PyPy) are supported.
It works by wrapping the metrics from the official client:
import asyncio
from aiohttp import web
from prometheus_client import Histogram
from prometheus_async.aio import time
REQ_TIME = Histogram("req_time_seconds", "time spent in requests")
@time(REQ_TIME)
async def req(request):
await asyncio.sleep(1)
return web.Response(body=b"hello")
Even for synchronous applications, the metrics exposure methods can be useful since they are more powerful than the one shipped with the official client. For that, helper functions have been added that run them in separate threads (asyncio-only for the time being).
The source code is hosted on GitHub and the documentation on Read The Docs.
Release Information
17.4.0 (2017-08-14)
Backward-incompatible changes:
none
Deprecations:
none
Changes:
Set proper content type header for the root redirection page.
Credits
prometheus_async is written and maintained by Hynek Schlawack.
The development is kindly supported by Variomedia AG.
Other contributors can be found in GitHub’s overview.
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
Hashes for prometheus_async-17.4.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 028c3b0be8b470f14f42c2d83c25be34559a0c0357cc2c4a4779e1cf20275015 |
|
MD5 | 3da17d9fb69f42f9fb3dea88fd8b6b1b |
|
BLAKE2b-256 | a559919c14c72c6a83305ebc2934c5a0cfcdf2163f8c0cd26623f1ac7bd86aa6 |