Metadata-Version: 2.1
Name: django-pg-stat-statements
Version: 0.1.0
Summary: A PostgreSQL profiler for Django that uses pg_stat_statements extension
Author: blag
Requires-Python: >=3.11
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: Django (>=2.2)
Requires-Dist: psycopg2-binary (>=2.9.10)
Project-URL: Homepage, https://github.com/blag/django-pg-stat-statements
Description-Content-Type: text/markdown

# django_pg_stat_statements

[![CircleCI](https://dl.circleci.com/status-badge/img/gh/Hipo/django-pg-stat-statements/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/Hipo/django-pg-stat-statements/tree/main)
[![PyPI Version](https://img.shields.io/pypi/v/django-pg-stat-statements.svg)](https://pypi.org/project/django-pg-stat-statements)
[![Python Versions](https://img.shields.io/pypi/pyversions/django-pg-stat-statements.svg)](https://pypi.org/project/django-pg-stat-statements)

A PostgreSQL query profiler for Django that uses `pg_stat_statements` extension.

# Changelog

## v0.1.0

- Forked from django-pg-trunk

# Requirements

- Python >= 3.7
- PostgreSQL >= 9.2
- Django >= 2.2

# Installation

Install using pip:

```
pip install django-pg-stat-statements
```

Then add `django_pg_stat_statements` to your `INSTALLED_APPS`.

```python
INSTALLED_APPS = [
    ...
    'django_pg_stat_statements',
]
```

`django-pg-stat-statements` will automatically install `pg_stat_statements` extension for PostgreSQL if it doesn't exist, however `pg_stat_statements` should be added to `shared_preload_libraries` in the PostgreSQL config.

# Usage

After installing the package, database queries can be examined under `PostgreSQL Stat Statements > Query Statistics` in Django admin.

<img width="1536" alt="Screen Shot 2022-01-23 at 14 08 23" src="https://user-images.githubusercontent.com/24718583/150675600-de240881-f0f5-4c3f-a1cc-c6034757afc9.png">

Change view have more detailed statistics. All of the columns of `pg_stat_statements` can be found [here](https://www.postgresql.org/docs/13/pgstatstatements.html).

<img width="1536" alt="Screen Shot 2022-01-23 at 14 09 01" src="https://user-images.githubusercontent.com/24718583/150675584-a811952f-6d44-44d6-ae23-050ef94ca7fb.png">

A possible usecase of `QueryStatistic` model can be running a cron job that checks if there is a query that takes more time than a specific thershold, and send related alerts (emails, Slack notifications, etc.).

# Contribution

### As a first step, please open an issue about the feature/bug.

- Build and run tests with docker-compose:

  ```bash
  docker-compose build test_app && docker-compose run --rm test_app
  ```

- Tests can be run using `pytest` command. Tests for different environments will be run on CircleCI.
- Changes on Django Admin can be tested using `python manage.py runserver 0:8000` in development Docker container and navigating to http://127.0.0.1/admin.

