├── .gitignore ├── AUTHORS ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.rst ├── debian ├── changelog ├── compat ├── control ├── docs ├── pyversions └── rules ├── docs ├── Makefile ├── conf.py ├── config │ └── index.rst ├── extensions.rst ├── index.rst ├── install │ └── index.rst ├── make.bat └── technical.rst ├── sentry ├── __init__.py ├── client │ ├── __init__.py │ ├── async │ │ └── __init__.py │ ├── base.py │ ├── celery │ │ ├── __init__.py │ │ ├── client.py │ │ ├── conf.py │ │ ├── models.py │ │ └── tasks.py │ └── logging │ │ └── __init__.py ├── collector │ ├── scripts │ │ ├── __init__.py │ │ └── runner.py │ └── views.py ├── conf │ └── __init__.py ├── contrib │ ├── __init__.py │ ├── django │ │ ├── __init__.py │ │ ├── middleware.py │ │ └── models.py │ ├── logbook │ │ └── __init__.py │ └── logging │ │ └── __init__.py ├── core │ ├── __init__.py │ ├── cleaner.py │ ├── plugins.py │ └── processors.py ├── db │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── redis.py │ │ └── sqlalchemy │ │ │ ├── __init__.py │ │ │ ├── backend.py │ │ │ └── models.py │ └── models.py ├── events.py ├── interfaces.py ├── middleware.py ├── models.py ├── plugins │ ├── __init__.py │ ├── sentry_redmine │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── sentry │ │ │ │ └── plugins │ │ │ │ └── redmine │ │ │ │ └── create_issue.html │ │ └── tests │ │ │ ├── __init__.py │ │ │ └── fixtures │ │ │ └── regression.json │ ├── sentry_servers │ │ ├── __init__.py │ │ ├── models.py │ │ └── templates │ │ │ └── sentry │ │ │ └── plugins │ │ │ └── sentry_servers │ │ │ ├── index.html │ │ │ └── widget.html │ ├── sentry_sites │ │ ├── __init__.py │ │ ├── models.py │ │ └── templates │ │ │ └── sentry │ │ │ └── plugins │ │ │ └── sentry_sites │ │ │ ├── index.html │ │ │ └── widget.html │ └── sentry_urls │ │ ├── __init__.py │ │ ├── models.py │ │ └── templates │ │ └── sentry │ │ └── plugins │ │ └── sentry_urls │ │ ├── index.html │ │ └── widget.html ├── static │ ├── images │ │ ├── search.png │ │ └── sentry.png │ ├── scripts │ │ ├── global.js │ │ ├── highcharts.js │ │ ├── jquery.animate-colors-min.js │ │ └── jquery.js │ └── styles │ │ └── global.css ├── templates │ └── sentry │ │ ├── 404.html │ │ ├── 500.html │ │ ├── emails │ │ └── error.txt │ │ ├── group │ │ ├── details.html │ │ ├── event.html │ │ └── event_list.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── login.html │ │ ├── partial │ │ ├── event.html │ │ ├── group.html │ │ ├── interfaces │ │ │ ├── exception.html │ │ │ ├── http.html │ │ │ └── stacktrace.html │ │ ├── notification.html │ │ └── pager.html │ │ └── search.html ├── utils │ ├── __init__.py │ ├── api.py │ ├── compat.py │ ├── encoding.py │ └── shortcuts.py └── web │ ├── __init__.py │ ├── feeds.py │ ├── filters.py │ ├── scripts │ ├── __init__.py │ ├── data_faker.py │ └── runner.py │ ├── templatetags.py │ └── views.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_backends ├── __init__.py └── test_redis.py ├── test_clients ├── __init__.py ├── test_base.py └── test_logging.py ├── test_contrib ├── __init__.py ├── django │ ├── __init__.py │ ├── bad_templates │ │ └── 404.html │ ├── test_django.py │ ├── urls.py │ └── views.py ├── test_logbook.py └── test_logging.py ├── test_events.py ├── test_interfaces ├── __init__.py └── test_http.py ├── test_orm.py └── test_web ├── __init__.py └── test_api.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | http://github.com/dcramer/django-sentry/contributors -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/README.rst -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/debian/control -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.rst 2 | -------------------------------------------------------------------------------- /debian/pyversions: -------------------------------------------------------------------------------- 1 | 2.4- 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/debian/rules -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/config/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/config/index.rst -------------------------------------------------------------------------------- /docs/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/extensions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/install/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/technical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/docs/technical.rst -------------------------------------------------------------------------------- /sentry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/__init__.py -------------------------------------------------------------------------------- /sentry/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/__init__.py -------------------------------------------------------------------------------- /sentry/client/async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/async/__init__.py -------------------------------------------------------------------------------- /sentry/client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/base.py -------------------------------------------------------------------------------- /sentry/client/celery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/celery/__init__.py -------------------------------------------------------------------------------- /sentry/client/celery/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/celery/client.py -------------------------------------------------------------------------------- /sentry/client/celery/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/celery/conf.py -------------------------------------------------------------------------------- /sentry/client/celery/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/celery/models.py -------------------------------------------------------------------------------- /sentry/client/celery/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/celery/tasks.py -------------------------------------------------------------------------------- /sentry/client/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/client/logging/__init__.py -------------------------------------------------------------------------------- /sentry/collector/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry/collector/scripts/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/collector/scripts/runner.py -------------------------------------------------------------------------------- /sentry/collector/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/collector/views.py -------------------------------------------------------------------------------- /sentry/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/conf/__init__.py -------------------------------------------------------------------------------- /sentry/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/contrib/__init__.py -------------------------------------------------------------------------------- /sentry/contrib/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/contrib/django/__init__.py -------------------------------------------------------------------------------- /sentry/contrib/django/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/contrib/django/middleware.py -------------------------------------------------------------------------------- /sentry/contrib/django/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/contrib/django/models.py -------------------------------------------------------------------------------- /sentry/contrib/logbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/contrib/logbook/__init__.py -------------------------------------------------------------------------------- /sentry/contrib/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/contrib/logging/__init__.py -------------------------------------------------------------------------------- /sentry/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/core/__init__.py -------------------------------------------------------------------------------- /sentry/core/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/core/cleaner.py -------------------------------------------------------------------------------- /sentry/core/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/core/plugins.py -------------------------------------------------------------------------------- /sentry/core/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/core/processors.py -------------------------------------------------------------------------------- /sentry/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/__init__.py -------------------------------------------------------------------------------- /sentry/db/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/backends/__init__.py -------------------------------------------------------------------------------- /sentry/db/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/backends/base.py -------------------------------------------------------------------------------- /sentry/db/backends/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/backends/redis.py -------------------------------------------------------------------------------- /sentry/db/backends/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/backends/sqlalchemy/__init__.py -------------------------------------------------------------------------------- /sentry/db/backends/sqlalchemy/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/backends/sqlalchemy/backend.py -------------------------------------------------------------------------------- /sentry/db/backends/sqlalchemy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/backends/sqlalchemy/models.py -------------------------------------------------------------------------------- /sentry/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/db/models.py -------------------------------------------------------------------------------- /sentry/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/events.py -------------------------------------------------------------------------------- /sentry/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/interfaces.py -------------------------------------------------------------------------------- /sentry/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/middleware.py -------------------------------------------------------------------------------- /sentry/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/models.py -------------------------------------------------------------------------------- /sentry/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/__init__.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_redmine/conf.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_redmine/migrations/0001_initial.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_redmine/models.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/templates/sentry/plugins/redmine/create_issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_redmine/templates/sentry/plugins/redmine/create_issue.html -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_redmine/tests/__init__.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_redmine/tests/fixtures/regression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_redmine/tests/fixtures/regression.json -------------------------------------------------------------------------------- /sentry/plugins/sentry_servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry/plugins/sentry_servers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_servers/models.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_servers/templates/sentry/plugins/sentry_servers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_servers/templates/sentry/plugins/sentry_servers/index.html -------------------------------------------------------------------------------- /sentry/plugins/sentry_servers/templates/sentry/plugins/sentry_servers/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_servers/templates/sentry/plugins/sentry_servers/widget.html -------------------------------------------------------------------------------- /sentry/plugins/sentry_sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry/plugins/sentry_sites/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_sites/models.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_sites/templates/sentry/plugins/sentry_sites/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_sites/templates/sentry/plugins/sentry_sites/index.html -------------------------------------------------------------------------------- /sentry/plugins/sentry_sites/templates/sentry/plugins/sentry_sites/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_sites/templates/sentry/plugins/sentry_sites/widget.html -------------------------------------------------------------------------------- /sentry/plugins/sentry_urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sentry/plugins/sentry_urls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_urls/models.py -------------------------------------------------------------------------------- /sentry/plugins/sentry_urls/templates/sentry/plugins/sentry_urls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_urls/templates/sentry/plugins/sentry_urls/index.html -------------------------------------------------------------------------------- /sentry/plugins/sentry_urls/templates/sentry/plugins/sentry_urls/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/plugins/sentry_urls/templates/sentry/plugins/sentry_urls/widget.html -------------------------------------------------------------------------------- /sentry/static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/images/search.png -------------------------------------------------------------------------------- /sentry/static/images/sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/images/sentry.png -------------------------------------------------------------------------------- /sentry/static/scripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/scripts/global.js -------------------------------------------------------------------------------- /sentry/static/scripts/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/scripts/highcharts.js -------------------------------------------------------------------------------- /sentry/static/scripts/jquery.animate-colors-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/scripts/jquery.animate-colors-min.js -------------------------------------------------------------------------------- /sentry/static/scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/scripts/jquery.js -------------------------------------------------------------------------------- /sentry/static/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/static/styles/global.css -------------------------------------------------------------------------------- /sentry/templates/sentry/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/404.html -------------------------------------------------------------------------------- /sentry/templates/sentry/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/500.html -------------------------------------------------------------------------------- /sentry/templates/sentry/emails/error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/emails/error.txt -------------------------------------------------------------------------------- /sentry/templates/sentry/group/details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/group/details.html -------------------------------------------------------------------------------- /sentry/templates/sentry/group/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/group/event.html -------------------------------------------------------------------------------- /sentry/templates/sentry/group/event_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/group/event_list.html -------------------------------------------------------------------------------- /sentry/templates/sentry/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/index.html -------------------------------------------------------------------------------- /sentry/templates/sentry/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/layout.html -------------------------------------------------------------------------------- /sentry/templates/sentry/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/login.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/event.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/group.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/interfaces/exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/interfaces/exception.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/interfaces/http.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/interfaces/http.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/interfaces/stacktrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/interfaces/stacktrace.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/notification.html -------------------------------------------------------------------------------- /sentry/templates/sentry/partial/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/partial/pager.html -------------------------------------------------------------------------------- /sentry/templates/sentry/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/templates/sentry/search.html -------------------------------------------------------------------------------- /sentry/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/utils/__init__.py -------------------------------------------------------------------------------- /sentry/utils/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/utils/api.py -------------------------------------------------------------------------------- /sentry/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/utils/compat.py -------------------------------------------------------------------------------- /sentry/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/utils/encoding.py -------------------------------------------------------------------------------- /sentry/utils/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/utils/shortcuts.py -------------------------------------------------------------------------------- /sentry/web/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/__init__.py -------------------------------------------------------------------------------- /sentry/web/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/feeds.py -------------------------------------------------------------------------------- /sentry/web/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/filters.py -------------------------------------------------------------------------------- /sentry/web/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/scripts/__init__.py -------------------------------------------------------------------------------- /sentry/web/scripts/data_faker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/scripts/data_faker.py -------------------------------------------------------------------------------- /sentry/web/scripts/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/scripts/runner.py -------------------------------------------------------------------------------- /sentry/web/templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/templatetags.py -------------------------------------------------------------------------------- /sentry/web/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/sentry/web/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_backends/test_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_backends/test_redis.py -------------------------------------------------------------------------------- /tests/test_clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_clients/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_clients/test_base.py -------------------------------------------------------------------------------- /tests/test_clients/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_clients/test_logging.py -------------------------------------------------------------------------------- /tests/test_contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_contrib/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_contrib/django/bad_templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_contrib/django/bad_templates/404.html -------------------------------------------------------------------------------- /tests/test_contrib/django/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_contrib/django/test_django.py -------------------------------------------------------------------------------- /tests/test_contrib/django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_contrib/django/urls.py -------------------------------------------------------------------------------- /tests/test_contrib/django/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_contrib/test_logbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_contrib/test_logbook.py -------------------------------------------------------------------------------- /tests/test_contrib/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_contrib/test_logging.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_interfaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_interfaces/test_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_interfaces/test_http.py -------------------------------------------------------------------------------- /tests/test_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_orm.py -------------------------------------------------------------------------------- /tests/test_web/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_web/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/sentry-old/HEAD/tests/test_web/test_api.py --------------------------------------------------------------------------------