dify/api/extensions/ext_sentry.py

39 lines
1.3 KiB
Python
Raw Normal View History

import openai
2023-05-15 08:51:32 +08:00
import sentry_sdk
from langfuse import parse_error
2023-05-15 08:51:32 +08:00
from sentry_sdk.integrations.celery import CeleryIntegration
from sentry_sdk.integrations.flask import FlaskIntegration
from werkzeug.exceptions import HTTPException
from configs import dify_config
2024-09-19 17:34:12 +08:00
from core.model_runtime.errors.invoke import InvokeRateLimitError
2023-05-15 08:51:32 +08:00
def before_send(event, hint):
if "exc_info" in hint:
exc_type, exc_value, tb = hint["exc_info"]
if parse_error.defaultErrorResponse in str(exc_value):
return None
return event
2023-05-15 08:51:32 +08:00
def init_app(app):
if dify_config.SENTRY_DSN:
2023-05-15 08:51:32 +08:00
sentry_sdk.init(
dsn=dify_config.SENTRY_DSN,
integrations=[FlaskIntegration(), CeleryIntegration()],
2024-09-19 17:34:12 +08:00
ignore_errors=[
HTTPException,
ValueError,
openai.APIStatusError,
InvokeRateLimitError,
parse_error.defaultErrorResponse,
],
traces_sample_rate=dify_config.SENTRY_TRACES_SAMPLE_RATE,
profiles_sample_rate=dify_config.SENTRY_PROFILES_SAMPLE_RATE,
environment=dify_config.DEPLOY_ENV,
release=f"dify-{dify_config.CURRENT_VERSION}-{dify_config.COMMIT_SHA}",
before_send=before_send,
2023-05-15 08:51:32 +08:00
)