Skip to main content

A Django app that exposes a bunch of PostgreSQL database metrics.

Project description

django-postgres-metrics

GitHub Workflow Status (branch) Codecov branch PyPI

A Django application that exposes a bunch of PostgreSQL database metrics.

Background

At PyCon Canada 2017 Craig Kerstiens gave a talk "Postgres at any scale". In his talk Craig pointed out a bunch of metrics one should look at to understand why a PostgreSQL database could be "slow" or not perform as expected.

This project adds a Django Admin view exposing these metrics to Django users with the is_superusers flag turned on.

Installation

Start by installing django-postgres-metrics from PyPI:

(env)$ python -m pip install django-postgres-metrics

You will also need to make sure to have psycopg2 installed which is already a requirement by Django for PostgreSQL support anyway.

Then you need to add postgres_metrics to your INSTALLED_APPS list. Due to the way django-postgres-metrics works, you need to include it _before* the admin app:

INSTALLED_APPS = [
    'postgres_metrics.apps.PostgresMetrics',
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
]

You also need to make sure that the request context processor is included in the TEMPLATES setting. It is included by default for projects that were started on Django 1.8 or later:

TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'OPTIONS': {
            'context_processors': [
                ...,
                'django.template.context_processors.request',
                ...,
            ],
        },
    },
]

Lastly, you need to add a URL path to your global urls.py before the admin URL patterns.

For Django 2.0 and up:

from django.urls import include, path

urlpatterns = [
    path('admin/postgres-metrics/', include('postgres_metrics.urls')),
    path('admin/', admin.site.urls),
]

For Django 1.11:

from django.conf.urls import include, url

urlpatterns = [
    url(r'^admin/postgres-metrics/', include('postgres_metrics.urls')),
    url(r'^admin/', admin.site.urls),
]

Security

If you found or if you think you found a security issue please get in touch via info+django-postgres-metrics *AT* markusholtermann *DOT* eu.

I'm working about this in my free time. I don't have time to monitor the email 24/7. But you should normally receive a response within a week. If I haven't got back to you within 2 weeks, please reach out again.

Contributing

The uses pre-commit for linting and formatting of source code:

(env)$ python -m pip install '.[dev,test]'
(env)$ pre-commit install -t pre-commit -t pre-push --install-hooks

To run the unit tests:

(env)$ django-admin.py test -v 2 --settings=tests.settings

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

django-postgres-metrics-0.7.1.tar.gz (29.9 kB view details)

Uploaded Source

Built Distribution

django_postgres_metrics-0.7.1-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

Details for the file django-postgres-metrics-0.7.1.tar.gz.

File metadata

  • Download URL: django-postgres-metrics-0.7.1.tar.gz
  • Upload date:
  • Size: 29.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for django-postgres-metrics-0.7.1.tar.gz
Algorithm Hash digest
SHA256 5b3d6c42a0b2cdf0c9c8a08aa54f247fb3a0fad0b4e1183ab0f4f7d5f0954a70
MD5 270876b7d8767267815c3200a5c699ee
BLAKE2b-256 e5b636d270f64d68a6694074d2a6093b7ab9d1e3bd3dcea07f456bb342df6099

See more details on using hashes here.

File details

Details for the file django_postgres_metrics-0.7.1-py3-none-any.whl.

File metadata

  • Download URL: django_postgres_metrics-0.7.1-py3-none-any.whl
  • Upload date:
  • Size: 15.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1

File hashes

Hashes for django_postgres_metrics-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d9a439143985497571132f4395afc39047d3dcaa114d6ce79d35853201c538ed
MD5 ac76675356084fd550d44d6da5c07dd1
BLAKE2b-256 6876c56dd02abef87b13fc853c5242119841611e549e18dd1915698c81016461

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