You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Instana sensor includes WSGI middleware that can be added to any WSGI compliant stack. This is automated for various stacks but can also be done manually for those we haven't added support for yet.
2
+
3
+
The general usage is:
4
+
5
+
```python
6
+
import instana
7
+
from instana.wsgi import iWSGIMiddleware
8
+
9
+
# Wrap the wsgi app in Instana middleware (iWSGIMiddleware)
10
+
wsgiapp = iWSGIMiddleware(MyWSGIApplication())
11
+
```
12
+
13
+
We are working to automate this for all major frameworks but in the meantime, here are some specific quick starts for those we don't have automatic support for yet.
0 commit comments