root: disable sentry's auto_session_tracking
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
4c5c4dcf2c
commit
4f24d61290
|
@ -340,11 +340,6 @@ CELERY_BEAT_SCHEDULE = {
|
||||||
"schedule": crontab(minute="*/5"),
|
"schedule": crontab(minute="*/5"),
|
||||||
"options": {"queue": "authentik_scheduled"},
|
"options": {"queue": "authentik_scheduled"},
|
||||||
},
|
},
|
||||||
"db_backup": {
|
|
||||||
"task": "authentik.core.tasks.backup_database",
|
|
||||||
"schedule": crontab(hour="*/24", minute=0),
|
|
||||||
"options": {"queue": "authentik_scheduled"},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
CELERY_TASK_CREATE_MISSING_QUEUES = True
|
CELERY_TASK_CREATE_MISSING_QUEUES = True
|
||||||
CELERY_TASK_DEFAULT_QUEUE = "authentik"
|
CELERY_TASK_DEFAULT_QUEUE = "authentik"
|
||||||
|
@ -375,6 +370,7 @@ if _ERROR_REPORTING:
|
||||||
traces_sample_rate=float(CONFIG.y("error_reporting.sample_rate", 0.5)),
|
traces_sample_rate=float(CONFIG.y("error_reporting.sample_rate", 0.5)),
|
||||||
environment=CONFIG.y("error_reporting.environment", "customer"),
|
environment=CONFIG.y("error_reporting.environment", "customer"),
|
||||||
send_default_pii=CONFIG.y_bool("error_reporting.send_pii", False),
|
send_default_pii=CONFIG.y_bool("error_reporting.send_pii", False),
|
||||||
|
auto_session_tracking=False,
|
||||||
)
|
)
|
||||||
set_tag("authentik.build_hash", get_build_hash("tagged"))
|
set_tag("authentik.build_hash", get_build_hash("tagged"))
|
||||||
set_tag("authentik.env", env)
|
set_tag("authentik.env", env)
|
||||||
|
|
Reference in New Issue