Skip to content

Commit 69c9116

Browse files
committed
bulk removing links to deprecated URL ping tests
1 parent 180fe5d commit 69c9116

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.reviewer: mmcc
1010

1111
# Track incoming requests with OpenCensus Python
1212

13-
Incoming request data is collected using OpenCensus Python and its various integrations. Track incoming request data sent to your web applications built on top of the popular web frameworks `django`, `flask` and `pyramid`. The data is then sent to Application Insights under Azure Monitor as `requests` telemetry.
13+
OpenCensus Python and its integrations collect incoming request data. Track incoming request data sent to your web applications built on top of the popular web frameworks `django`, `flask` and `pyramid`. Application Insights receives the data as `requests` telemetry
1414

1515
First, instrument your Python application with latest [OpenCensus Python SDK](./opencensus-python.md).
1616

@@ -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)