Tutorial: How to monitor a Django application with Prometheus

Introduction

Prometheus is an open-source systems monitoring and alerting toolkit that can be used to easily and cheaply monitor infrastructure and applications. In this tutorial we show how to monitor a Django application with Prometheus. (And even if you don’t have a Django application, we include an optional step to create one so that everyone can follow along.)

Prerequisites

A machine with the following installed:

TIP:Since machines commonly have multiple versions of Python installed, in this tutorial we will call pip using the python -m pip [foo] syntax instead of the pip [foo] syntax. This is to ensure that pip installs new components for the version of Python that we are using.

Step 0 - Set up a basic Django application (optional)

(Please skip this step if you already have a Django application.)

Install Django

  1. python -m pip install Django

*More info on Django.*

Create a template project

Navigate to the directory where you want to create the project, and run:

  1. django-admin startproject mysite

This will create a mysite directory in your current directory, that looks something like this (more here):

  1. mysite/
  2. manage.py
  3. mysite/
  4. __init__.py
  5. settings.py
  6. urls.py
  7. asgi.py
  8. wsgi.py

Verify that Django is working

Change to the outer mysite directory, and run:

  1. python manage.py runserver

You should see something like this:

  1. Performing system checks...
  2. System check identified no issues (0 silenced).
  3. You have unapplied migrations; your app may not work properly until they are applied.
  4. Run 'python manage.py migrate' to apply them.
  5. March 10, 2020 - 15:50:53
  6. Django version 3.0, using settings 'mysite.settings'
  7. Starting development server at http://127.0.0.1:8000/
  8. Quit the server with CONTROL-C.

If that works, then visit http://127.0.0.1:8000/ from your Web browser. You should see a “Congratulations!” page, with a rocket taking off.

(If that didn’t work, then please take a look at the Django documentation for troubleshooting.)

Step 1 - Export prometheus-style monitoring metrics from your Django application

We will use the django-prometheus package for exporting prometheus-style monitoring metrics from our Django application.

Install django-prometheus

  1. python -m pip install django-prometheus

Modify settings.py and urls.py

In settings.py, add:

  1. INSTALLED_APPS = [
  2. ...
  3. 'django_prometheus',
  4. ...
  5. ]
  6. MIDDLEWARE = [
  7. 'django_prometheus.middleware.PrometheusBeforeMiddleware',
  8. # All your other middlewares go here, including the default
  9. # middlewares like SessionMiddleware, CommonMiddleware,
  10. # CsrfViewmiddleware, SecurityMiddleware, etc.
  11. 'django_prometheus.middleware.PrometheusAfterMiddleware',
  12. ]

In urls.py, make sure you have this in the header:

  1. from django.conf.urls import url

Then add this under urlpatterns:

  1. urlpatterns = [
  2. ...
  3. url('', include('django_prometheus.urls')),
  4. ]

Verify that metrics are being exported

Restart the application and curl the /metrics endpoint:

  1. python manage.py runserver
  2. curl localhost:8000/metrics

(Alternatively, once you’ve restarted your application, visit http://localhost:8000/metrics from your web browser.)

You should see something like this:

  1. # HELP python_gc_objects_collected_total Objects collected during gc
  2. # TYPE python_gc_objects_collected_total counter
  3. python_gc_objects_collected_total{generation="0"} 11716.0
  4. python_gc_objects_collected_total{generation="1"} 1699.0
  5. python_gc_objects_collected_total{generation="2"} 616.0
  6. # HELP python_gc_objects_uncollectable_total Uncollectable object found during GC
  7. # TYPE python_gc_objects_uncollectable_total counter
  8. python_gc_objects_uncollectable_total{generation="0"} 0.0
  9. python_gc_objects_uncollectable_total{generation="1"} 0.0
  10. python_gc_objects_uncollectable_total{generation="2"} 0.0
  11. # HELP python_gc_collections_total Number of times this generation was collected
  12. # TYPE python_gc_collections_total counter
  13. python_gc_collections_total{generation="0"} 7020.0
  14. python_gc_collections_total{generation="1"} 638.0
  15. python_gc_collections_total{generation="2"} 34.0
  16. # HELP python_info Python platform information
  17. # TYPE python_info gauge
  18. python_info{implementation="CPython",major="3",minor="8",patchlevel="0",version="3.8.0"} 1.0
  19. ...

Step 2 - Point Prometheus to your Django application metrics endpoint

(Note: This section assumes that you have a locally running Prometheus instance.)

Update prometheus.yml. Under scrape_configs:, add:

  1. - job_name: django
  2. scrape_interval: 10s
  3. static_configs:
  4. - targets:
  5. - localhost:8000

TIP:Replace the job_name “django” with whatever you’d like as a prefix for your Django application metrics in Prometheus. For example, “webapp”, etc.)

Restart Prometheus

  1. ./prometheus --config.file=prometheus.yml

Verify that Prometheus is scraping metrics from your Django application:

Once you are running Prometheus locally, visit the Prometheus Expression Browser (running on localhost) from your web browser.

For example, you can visit the below page, which graphs the total number of http requests your Django application received in the last hour:

http://localhost:9090/graph?g0.range_input=1h&g0.stacked=1&g0.expr=django_http_requests_total_by_method_total&g0.tab=0

It should look something like this:

Prometheus graph of Total HTTP Requests in the last hour

If you’d like to do more testing, visit your Django application several more times and reload the Prometheus Expression Browser to confirm that it is working. Also feel free to explore the other Django metrics that Prometheus is collecting.

Step 3 - Instrument additional aspects of your application (optional)

Django-prometheus is quite powerful, and allows you to easily instrument additional aspects of your application, including:

  • Your databases
  • Your models (e.g., monitor the creation/deletion/update rate for your models)
  • Your caches
  • Your own custom metrics in your code

More information on how to do all of these is here.

Next steps

Congratulations! Now you are monitoring your Django application with Prometheus!

Looking for something to do next? You can start building dashboards to monitor key metrics in real-time, using another open-source tool for your visualizations, like Grafana.