# sentry-quotas **Repository Path**: mirrors_getsentry/sentry-quotas ## Basic Information - **Project Name**: sentry-quotas - **Description**: An extension for Sentry which allows setting hard limits. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README sentry-quotas =============== An extension for Sentry which allows setting hard limits. **This package is no longer maintained and is part of Sentry core.** Install ------- Install the package via ``pip``:: pip install sentry-quotas Configuration ------------- Configure ``SENTRY_QUOTAS`` in your ``sentry.conf.py``: :: SENTRY_QUOTAS = { 'redis': { 'hosts': { # for more information on configuring hosts, see the documentation for the # Nydus python package 0: { 'host': 'localhost', 'port': 6379 } } }, 'default_events_per_minute': 100, } The ``default_events_per_minute`` setting is optional. Per Project Settings ~~~~~~~~~~~~~~~~~~~~ You'll find a setting under each project that the plugin is enabled for which allows overriding the default events per minute setting.