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
Copy file name to clipboardExpand all lines: README.md
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,27 @@ The instana package is [hosted on pypi](https://pypi.python.org/pypi/instana) an
22
22
23
23
## Usage
24
24
25
-
The instana package is a zero configuration tool that will automatically collect key metrics from your Python processes. Just install and go.
25
+
The instana package will automatically collect key metrics from your Python processes. Just install and go.
26
+
27
+
## Django Middleware
28
+
29
+
For the initial BETA, Django instrumentation must be manually inserted into the Django middleware list. This will be automated before post BETA release.
30
+
31
+
in `myapp/settings.py`:
32
+
```python
33
+
import instana.middleware
34
+
35
+
MIDDLEWARE= [
36
+
'instana.middleware.InstanaMiddleware', # Add Instana at the start of the list
0 commit comments