mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-13 00:59:03 +08:00
feat: add langfuse sentry ignore error (#8353)
This commit is contained in:
parent
4637ddaa7f
commit
82f7875a52
@ -1,5 +1,6 @@
|
|||||||
import openai
|
import openai
|
||||||
import sentry_sdk
|
import sentry_sdk
|
||||||
|
from langfuse import parse_error
|
||||||
from sentry_sdk.integrations.celery import CeleryIntegration
|
from sentry_sdk.integrations.celery import CeleryIntegration
|
||||||
from sentry_sdk.integrations.flask import FlaskIntegration
|
from sentry_sdk.integrations.flask import FlaskIntegration
|
||||||
from werkzeug.exceptions import HTTPException
|
from werkzeug.exceptions import HTTPException
|
||||||
@ -10,7 +11,7 @@ def init_app(app):
|
|||||||
sentry_sdk.init(
|
sentry_sdk.init(
|
||||||
dsn=app.config.get("SENTRY_DSN"),
|
dsn=app.config.get("SENTRY_DSN"),
|
||||||
integrations=[FlaskIntegration(), CeleryIntegration()],
|
integrations=[FlaskIntegration(), CeleryIntegration()],
|
||||||
ignore_errors=[HTTPException, ValueError, openai.APIStatusError],
|
ignore_errors=[HTTPException, ValueError, openai.APIStatusError, parse_error.defaultErrorResponse],
|
||||||
traces_sample_rate=app.config.get("SENTRY_TRACES_SAMPLE_RATE", 1.0),
|
traces_sample_rate=app.config.get("SENTRY_TRACES_SAMPLE_RATE", 1.0),
|
||||||
profiles_sample_rate=app.config.get("SENTRY_PROFILES_SAMPLE_RATE", 1.0),
|
profiles_sample_rate=app.config.get("SENTRY_PROFILES_SAMPLE_RATE", 1.0),
|
||||||
environment=app.config.get("DEPLOY_ENV"),
|
environment=app.config.get("DEPLOY_ENV"),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user