We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c649dac commit c8500b9Copy full SHA for c8500b9
bot/log.py
@@ -3,7 +3,9 @@
3
4
import sentry_sdk
5
from pydis_core.utils.logging import TRACE_LEVEL, get_logger, log_format
6
+from sentry_sdk.integrations.asyncio import AsyncioIntegration
7
from sentry_sdk.integrations.logging import LoggingIntegration
8
+from sentry_sdk.integrations.redis import RedisIntegration
9
10
from bot.constants import Bot, GIT_SHA
11
@@ -31,6 +33,8 @@ def setup_sentry() -> None:
31
33
dsn=Bot.sentry_dsn,
32
34
integrations=[
35
sentry_logging,
36
+ RedisIntegration(),
37
+ AsyncioIntegration(),
38
],
39
release=f"sir-robin@{GIT_SHA}",
40
traces_sample_rate=0.5,
0 commit comments