有没有办法从哨兵停用 gunicorn 日志?
Is there a way to deactivate gunicorn log from sentry?
我在一个 Django 项目中集成了 Sentry 和 aiohttp 集成,该应用程序是 运行 gunicorn。问题是哨兵中的日志是重复的,一个是由 gunicorn 发送的,另一个是由 aiohttp 记录器发送的,我可以禁用 gunicorn 日志来防止这种情况吗?
已解决,在sdk初始化之前
from sentry_sdk.integrations.logging import ignore_logger
ignore_logger('gunicorn.error')
我在一个 Django 项目中集成了 Sentry 和 aiohttp 集成,该应用程序是 运行 gunicorn。问题是哨兵中的日志是重复的,一个是由 gunicorn 发送的,另一个是由 aiohttp 记录器发送的,我可以禁用 gunicorn 日志来防止这种情况吗?
已解决,在sdk初始化之前
from sentry_sdk.integrations.logging import ignore_logger
ignore_logger('gunicorn.error')