Skip to content

Commit 180060c

Browse files
authored
Raising Acrolinx
1 parent 9a4108e commit 180060c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-monitor/app/opencensus-python-request.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ First, instrument your Python application with latest [OpenCensus Python SDK](./
2828
)
2929
```
3030

31-
3. Make sure AzureExporter is properly configured in your `settings.py` under `OPENCENSUS`. For requests from urls that you do not wish to track, add them to `EXCLUDELIST_PATHS`.
31+
3. Make sure AzureExporter is properly configured in your `settings.py` under `OPENCENSUS`. For requests from urls that you don't wish to track, add them to `EXCLUDELIST_PATHS`.
3232

3333
```python
3434
OPENCENSUS = {
@@ -70,7 +70,7 @@ You can find a Django sample application in the sample Azure Monitor OpenCensus
7070

7171
```
7272

73-
2. You can also configure your `flask` application through `app.config`. For requests from urls that you do not wish to track, add them to `EXCLUDELIST_PATHS`.
73+
2. You can also configure your `flask` application through `app.config`. For requests from urls that you don't wish to track, add them to `EXCLUDELIST_PATHS`.
7474

7575
```python
7676
app.config['OPENCENSUS'] = {
@@ -101,7 +101,7 @@ You can find a Flask sample application that tracks requests in the Azure Monito
101101
'.pyramid_middleware.OpenCensusTweenFactory')
102102
```
103103

104-
2. You can configure your `pyramid` tween directly in the code. For requests from urls that you do not wish to track, add them to `EXCLUDELIST_PATHS`.
104+
2. You can configure your `pyramid` tween directly in the code. For requests from urls that you don't wish to track, add them to `EXCLUDELIST_PATHS`.
105105

106106
```python
107107
settings = {

0 commit comments

Comments
 (0)