🔧(backend) fix sentry deprecated scope
`sentry_sdk.configure_scope` is deprecated and will be removed in the next major version.
This commit is contained in:
@@ -490,8 +490,10 @@ class Base(Configuration):
|
|||||||
integrations=[DjangoIntegration()],
|
integrations=[DjangoIntegration()],
|
||||||
traces_sample_rate=0.1,
|
traces_sample_rate=0.1,
|
||||||
)
|
)
|
||||||
with sentry_sdk.configure_scope() as scope:
|
|
||||||
scope.set_extra("application", "backend")
|
# Add the application name to the Sentry scope
|
||||||
|
scope = sentry_sdk.get_global_scope()
|
||||||
|
scope.set_tag("application", "backend")
|
||||||
|
|
||||||
# Ignore the logs added by the DockerflowMiddleware
|
# Ignore the logs added by the DockerflowMiddleware
|
||||||
ignore_logger("request.summary")
|
ignore_logger("request.summary")
|
||||||
|
|||||||
Reference in New Issue
Block a user