معرفی شرکت ها


django-postgres-metrics-0.9.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A Django app that exposes a bunch of PostgreSQL database metrics.
ویژگی مقدار
سیستم عامل -
نام فایل django-postgres-metrics-0.9.0
نام django-postgres-metrics
نسخه کتابخانه 0.9.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Markus Holtermann
ایمیل نویسنده info@markusholtermann.eu
آدرس صفحه اصلی https://github.com/django-postgres-metrics/django-postgres-metrics
آدرس اینترنتی https://pypi.org/project/django-postgres-metrics/
مجوز BSD
# django-postgres-metrics [![GitHub Build Status](https://img.shields.io/github/workflow/status/django-postgres-metrics/django-postgres-metrics/Test%20&%20Deploy/main?style=for-the-badge)](https://github.com/django-postgres-metrics/django-postgres-metrics/actions?query=branch%3Amain+event%3Apush) [![Codecov coverage](https://img.shields.io/codecov/c/gh/django-postgres-metrics/django-postgres-metrics/main?style=for-the-badge)](https://app.codecov.io/gh/django-postgres-metrics/django-postgres-metrics/branch/main) [![Read the Docs](https://img.shields.io/readthedocs/django-postgres-metrics?style=for-the-badge)](https://django-postgres-metrics.readthedocs.io/) [![Version](https://img.shields.io/pypi/v/django-postgres-metrics?label=Version&style=for-the-badge)](https://pypi.org/project/django-postgres-metrics/) ![License: BSD](https://img.shields.io/pypi/l/django-postgres-metrics?style=for-the-badge) [![Python Versions: see setup.py](https://img.shields.io/pypi/pyversions/django-postgres-metrics?label=Python&style=for-the-badge)](https://github.com/django-postgres-metrics/django-postgres-metrics/blob/main/setup.py) [![Django Versions: see setup.py](https://img.shields.io/pypi/djversions/django-postgres-metrics?color=%230C4B33&label=Django&style=for-the-badge)](https://github.com/django-postgres-metrics/django-postgres-metrics/blob/main/setup.py) A Django application that exposes a bunch of PostgreSQL database metrics. ## Background At [PyCon Canada 2017](https://2017.pycon.ca/) [Craig Kerstiens](http://www.craigkerstiens.com/) gave a talk "[Postgres at any scale](https://2017.pycon.ca/schedule/56/)". 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: ```console (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: ```python 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: ```python 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. ```python from django.urls import include, path urlpatterns = [ path('admin/postgres-metrics/', include('postgres_metrics.urls')), path('admin/', admin.site.urls), ] ``` This is what a metric could look like: ![Screenshot of the Detailed Index Usage metric, with help text, and a table with rows for each index](https://github.com/django-postgres-metrics/django-postgres-metrics/blob/main/docs/source/_static/screenshot.png) ## 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 project [black](https://pypi.org/project/black/) and [isort](https://pypi.org/project/isort/) for formatting its code. [flake8](https://pypi.org/project/flake8/) is used for linting. All these are combined into [pre-commit](https://pre-commit.com/) to run before each commit and push. To set it up: ```console (env)$ python -m pip install '.[dev,test]' (env)$ pre-commit install -t pre-commit -t pre-push --install-hooks ``` To run the unit tests: ```console (env)$ django-admin.py test -v 2 --settings=tests.settings ```


نیازمندی

مقدار نام
>=1.0 django-rich
- pre-commit
- Django
- psycopg2
<2.0,>=1.0 sphinx-rtd-theme
<5.0,>=4.0 Sphinx
<6,>=5 coverage[toml]
- Django
- psycopg2
==3.141.0 selenium


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl django-postgres-metrics-0.9.0:

    pip install django-postgres-metrics-0.9.0.whl


نصب پکیج tar.gz django-postgres-metrics-0.9.0:

    pip install django-postgres-metrics-0.9.0.tar.gz