Skip to main content

Support Prometheus metrics for ASGI applications

Project description

asgi-prometheus – Support Prometheus metrics for ASGI applications (Asyncio / Trio, / Curio)

Tests Status PYPI Version Python Versions

Requirements

  • python >= 3.9

Installation

asgi-prometheus should be installed using pip:

pip install asgi-prometheus

Usage

Common ASGI applications:

from asgi_prometheus import PrometheusMiddleware


async def my_app(scope, receive, send):
    """Read session and get the current user data from it or from request query."""
    await send({"type": "http.response.start", "status": status, "headers": headers})
    await send({"type": "http.response.body", "body": b"Hello World!"})

app = PrometheusMiddleware(my_app, metrics_url="/metrics", group_paths=['/'])

# http GET / -> OK
# http GET /metrics -> [Prometheus metrics]

As ASGI-Tools Internal middleware

from asgi_tools import App
from asgi_prometheus import PrometheusMiddleware

app = App()
app.middleware(PrometheusMiddleware.setup(group_paths=['/views', '/api']))

@app.route('/')
async def index(request):
    return 'Hello World!'

# http GET / -> OK
# http GET /prometheus -> [Prometheus metrics (default URL)]

Options

from asgi_sessions import PrometheusMiddleware

app = PrometheusMiddleware(

     # Your ASGI application
     app,

     # Metrics URL for Prometheus (set empty string to disable)
     metrics_url='/prometheus',

     # List of path's prefixes to group. A path which starts from the prefix will be grouped.
     # For example: group_paths=['/api/users'], "/api/users/1", "/api/users/2" will be grouped into "/api/users*"
     group_paths=[],

)

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/asgi-prometheus/issues

Contributing

Development of the project happens at: https://github.com/klen/asgi-prometheus

License

Licensed under a MIT license.

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

asgi_prometheus-1.2.3.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

asgi_prometheus-1.2.3-py3-none-any.whl (5.0 kB view details)

Uploaded Python 3

File details

Details for the file asgi_prometheus-1.2.3.tar.gz.

File metadata

  • Download URL: asgi_prometheus-1.2.3.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for asgi_prometheus-1.2.3.tar.gz
Algorithm Hash digest
SHA256 8e047959ff1cef1b1bad9ddce46723a8f030ad7e7b98bb3d58e1b1619ad166b8
MD5 7094cb5982c524caeb8029cad3e2c5c3
BLAKE2b-256 7ef059eeda10f472c450969042b952ce3b6f390ef41d683b7986d909237f2b16

See more details on using hashes here.

File details

Details for the file asgi_prometheus-1.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for asgi_prometheus-1.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c37e0d8dbd7561fd169511d4f0fde0c040d4e89e58ee4889a29fcf4bff0fef78
MD5 9234b242fe5a3197db2d023f4e0514a1
BLAKE2b-256 016c43a1a98f014e9aab28bf3a1bd77d5182df12cd057131486352bde0013ec4

See more details on using hashes here.

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