Add basic instrumentation possibilities to pretix (#271)

* add basic instrumentation possibilities to pretix

* make tabs to spaces

* apply flake8

* implement upstreams suggestions, round 1

* adjust naming of redis-connection

* address noredis

* add view for metrics

* implement HTTP basic auth in front of metrics-endpoint

* rename labelset

* make flake8-clean

* implement upstreams suggestions, round 2

* correct minor slipups

* fix missing return

* let isort add an empty line

* implement test for counter

* implement upstream suggestions, round 3

* correct typo

* implement first test for view

* finish view-test

* fix deprecated keyword

* implement upstream-suggestions, round 4

* implement test for gauge

* test exceptions as well

* add db-decorator
This commit is contained in:
Jonas Große Sundrup
2016-11-20 14:46:45 +01:00
committed by Raphael Michel
parent d308821c4c
commit d3327b1e45
6 changed files with 354 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ from django.conf.urls import include, url
import pretix.control.urls
import pretix.presale.urls
from .base.views import cachedfiles, health, js_catalog, redirect
from .base.views import cachedfiles, health, js_catalog, metrics, redirect
base_patterns = [
url(r'^download/(?P<id>[^/]+)/$', cachedfiles.DownloadView.as_view(),
@@ -13,6 +13,8 @@ base_patterns = [
name='healthcheck'),
url(r'^redirect/$', redirect.redir_view, name='redirect'),
url(r'^jsi18n/(?P<lang>[a-zA-Z-_]+)/$', js_catalog.js_catalog, name='javascript-catalog'),
url(r'^metrics$', metrics.serve_metrics,
name='metrics'),
]
control_patterns = [