Fix performance tracking for sentry and lower samplerate

environments/review-front-deve-otr6gc/deployments/13419
Georg Krause 2022-08-11 19:18:30 +02:00
rodzic 800e5e4ee8
commit 879460adaf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2970D504B2183D22
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -26,9 +26,10 @@ if env("FUNKWHALE_SENTRY_DSN", default=None) is not None:
sentry_sdk.init(
dsn=env("FUNKWHALE_SENTRY_DSN"),
integrations=[DjangoIntegration()],
traces_sample_rate=env("FUNKWHALE_SENTRY_SR", default="1.0"),
traces_sample_rate=env("FUNKWHALE_SENTRY_SR", default=0.25),
send_default_pii=False,
environment="api",
debug=True
)
"""