gds-metrics

Library for Prometheus instrumentation in Python/Flask based apps


Keywords
gds, reliability, engineering, metrics, prometheus
License
MIT
Install
pip install gds-metrics==0.2.3

Documentation

GDS metrics for Python apps Build Status

Coverage Status

This project is currently maintained by the Digital Marketplace team.

GDS Metrics are in Alpha and these instructions are subject to change.

GDS Python metrics enables your Python Flask web app to export performance data to Prometheus, you can add metrics to your app using this GDS Python Package.

This package is a thin wrapper around the Python Prometheus client that:

  • protects your /metrics endpoint with basic HTTP authentication for apps deployed to GOV.UK PaaS
  • exposes standard metrics to be used in Grafana http_server_request_duration_seconds_bucket, http_server_request_duration_seconds_count, http_server_request_duration_seconds_sum, http_server_exceptions_total

Once you’ve added this package, metrics data is served from your app's metrics endpoint and is scraped by Prometheus. This data can be turned into performance dashboards using Grafana.

You can read more about the Reliability Engineering monitoring solution here.

Before using GDS metrics

Before using GDS metrics you should have:

How to install metrics for Flask apps served on a Gunicorn server

To use GDS metrics you must:

  1. Add the latest version of the package to your requirements.txt, for example:

    gds-metrics==0.2.3

  2. Run the following command to install the package:

    pip install -r requirements.txt

  3. In your application file, usually application.py, create the GDSMetrics object and pass the Flask app object to the init_app function:

    ...
    from gds_metrics import GDSMetrics
    
    app = Flask(__name__)
    
    metrics = GDSMetrics()
    metrics.init_app(app)
    ...

    You want to run metrics.init_app before any other init_app functions and as early in your request processing as possible to get the most accurate and reliable response timings.

  4. Add/Update your Gunicorn config to import child_exit from the library:

    from gds_metrics.gunicorn import child_exit

    More information about Prometheus Gunicorn setup.

  5. Restart your server by running:

    gunicorn -c <config file>.py <application file>:<app variable>

    For example -

    gunicorn -c gunicorn_config.py application:app

  6. Visit any page of your app (for example the index page) to generate some site traffic

  7. Visit the metrics endpoint at /metrics to check if the package was set up correctly. If it's set up correctly, you will see a page containing some metrics (for example http_server_request_duration_seconds_bucket).

Running on GOV.UK Platform as a Service (PaaS)

When running on PaaS, citizens won’t see your metrics in production as this endpoint is automatically protected with authentication.

You can also read the official Cloud Foundry guide which has detailed information on deploying Python apps.

Optional configuration

You can change the path for serving metrics (by default /metrics) by setting the PROMETHEUS_METRICS_PATH environment variable.

If you are running blue-green deployments through a cf plugin like [autopilot][] you should disable basic auth on the \metrics endpoint and use IP whitelisting by setting the METRICS_BASIC_AUTH environment variable to false. This will minimise gaps in metrics during deployment.

How to setup extended metrics

While common metrics are recorded by default, you can also:

  • record your own metrics such as how many users are signed up for your service, or how many emails it's sent
  • use the Prometheus interface to set your own metrics as the metrics Python package is built on top of the Python Prometheus client

You can read more about the different types of metrics available in the Prometheus documentation.

Contributing

We welcome contributions. We'd appreciate it if you write tests with your changes and document them where appropriate, this will help us review them quickly.

Licence

This project is licensed under the MIT License.