mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Comments
This commit is contained in:
parent
6a8f902edb
commit
93f7d2df3e
@ -279,6 +279,12 @@ def start(hs, listeners=None):
|
|||||||
|
|
||||||
|
|
||||||
def setup_sentry_io(hs):
|
def setup_sentry_io(hs):
|
||||||
|
"""Enable sentry.io integration, if enabled in configuration
|
||||||
|
|
||||||
|
Args:
|
||||||
|
hs (synapse.server.HomeServer)
|
||||||
|
"""
|
||||||
|
|
||||||
if not hs.config.sentry_enabled:
|
if not hs.config.sentry_enabled:
|
||||||
return
|
return
|
||||||
|
|
||||||
@ -287,6 +293,8 @@ def setup_sentry_io(hs):
|
|||||||
dsn=hs.config.sentry_dsn,
|
dsn=hs.config.sentry_dsn,
|
||||||
release=get_version_string(synapse),
|
release=get_version_string(synapse),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# We set some default tags that give some context to this instance
|
||||||
with sentry_sdk.configure_scope() as scope:
|
with sentry_sdk.configure_scope() as scope:
|
||||||
scope.set_tag("matrix_server_name", hs.config.server_name)
|
scope.set_tag("matrix_server_name", hs.config.server_name)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user