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.
2 parents 64ef18c + f466529 commit bc5bbd1Copy full SHA for bc5bbd1
packet/__init__.py
@@ -17,6 +17,7 @@
17
18
import sentry_sdk
19
from sentry_sdk.integrations.flask import FlaskIntegration
20
+from sentry_sdk.integrations.sqlalchemy import SqlalchemyIntegration
21
22
app = Flask(__name__)
23
gzip = Gzip(app)
@@ -66,7 +67,7 @@
66
67
# Sentry
68
sentry_sdk.init(
69
dsn=app.config['SENTRY_DSN'],
- integrations=[FlaskIntegration()]
70
+ integrations=[FlaskIntegration(), SqlalchemyIntegration()]
71
)
72
73
app.logger.info('OIDCAuth and LDAP configured')
requirements.txt
@@ -10,4 +10,4 @@ gunicorn~=19.7.1
10
csh_ldap~=2.1.0
11
onesignal-sdk~=1.0.0
12
pylint-quotes~=0.2.1
13
-sentry-sdk[flask]==0.13.1
+sentry-sdk==0.13.1
0 commit comments