Skip to content

Commit 545e5dc

Browse files
Merge pull request #227665 from AaronMaxwell/aaronmax-deprecated-ping-test-links-4
bulk removing links to deprecated URL ping tests
2 parents 63bf177 + 69c9116 commit 545e5dc

10 files changed

+21
-21
lines changed

articles/azure-monitor/app/export-telemetry.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ After the first export is finished, you'll find the following structure in your
9797

9898
|Name | Description |
9999
|:----|:------|
100-
| [Availability](#availability) | Reports [availability web tests](./monitor-web-app-availability.md). |
100+
| [Availability](#availability) | Reports [availability web tests](./availability-overview.md). |
101101
| [Event](#events) | Custom events generated by [TrackEvent()](./api-custom-events-metrics.md#trackevent).
102102
| [Exceptions](#exceptions) |Reports [exceptions](./asp-net-exceptions.md) in the server and in the browser.
103103
| [Messages](#trace-messages) | Sent by [TrackTrace](./api-custom-events-metrics.md#tracktrace), and by the [logging adapters](./asp-net-trace-logs.md).
@@ -126,7 +126,7 @@ Data that has been discarded by [sampling](./sampling.md) isn't included in the
126126

127127
Other calculated metrics aren't included. For example, we don't export average CPU utilization, but we do export the raw telemetry from which the average is computed.
128128

129-
The data also includes the results of any [availability web tests](./monitor-web-app-availability.md) that you have set up.
129+
The data also includes the results of any [availability web tests](./app-insights-overview.md) that you have set up.
130130

131131
> [!NOTE]
132132
> If your application sends a lot of data, the sampling feature might operate and send only a fraction of the generated telemetry. [Learn more about sampling.](./sampling.md)
@@ -551,7 +551,7 @@ Sent by trackPageView() or [stopTrackPage](./api-custom-events-metrics.md#page-v
551551
| view [0] urlData.host |string | |
552552

553553
### Availability
554-
Reports [availability web tests](./monitor-web-app-availability.md).
554+
Reports [availability web tests](./app-insights-overview.md).
555555

556556
| Path | Type | Notes |
557557
| --- | --- | --- |

articles/azure-monitor/app/ip-addresses.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Application Insights Agent configuration is needed only when you're making chang
5454

5555
## Availability tests
5656

57-
This is the list of addresses from which [availability web tests](./monitor-web-app-availability.md) are run. If you want to run web tests on your app but your web server is restricted to serving specific clients, you'll have to permit incoming traffic from our availability test servers.
57+
This is the list of addresses from which [availability web tests](./availability-overview.md) are run. If you want to run web tests on your app but your web server is restricted to serving specific clients, you'll have to permit incoming traffic from our availability test servers.
5858

5959
> [!NOTE]
6060
> For resources located inside private virtual networks that can't allow direct inbound communication with the availability test agents in public Azure, the only option is to [create and host your own custom availability tests](availability-azure-functions.md).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ config_integration.trace_integrations(['sqlalchemy'])
168168
## Next steps
169169

170170
* [Application Map](./app-map.md)
171-
* [Availability](./monitor-web-app-availability.md)
171+
* [Availability](./availability-overview.md)
172172
* [Search](./diagnostic-search.md)
173173
* [Log (Analytics) query](../logs/log-query-overview.md)
174174
* [Transaction diagnostics](./transaction-diagnostics.md)

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

Lines changed: 5 additions & 5 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 = {
@@ -182,7 +182,7 @@ OpenCensus doesn't have an extension for FastAPI. To write your own FastAPI midd
182182
## Next steps
183183

184184
* [Application Map](./app-map.md)
185-
* [Availability](./monitor-web-app-availability.md)
185+
* [Availability](./availability-overview.md)
186186
* [Search](./diagnostic-search.md)
187187
* [Log (Analytics) query](../logs/log-query-overview.md)
188188
* [Transaction diagnostics](./transaction-diagnostics.md)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,6 +574,6 @@ For more information about how to use queries and logs, see [Logs in Azure Monit
574574

575575
### Alerts
576576

577-
* [Availability tests](./monitor-web-app-availability.md): Create tests to make sure your site is visible on the web.
577+
* [Availability overview](./availability-overview.md): Create tests to make sure your site is visible on the web.
578578
* [Smart diagnostics](../alerts/proactive-diagnostics.md): These tests run automatically, so you don't have to do anything to set them up. They tell you if your app has an unusual rate of failed requests.
579579
* [Metric alerts](../alerts/alerts-log.md): Set alerts to warn you if a metric crosses a threshold. You can set them on custom metrics that you code into your app.

articles/azure-monitor/app/powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.reviewer: vitalyg
1111

1212
[!INCLUDE [updated-for-az](../../../includes/updated-for-az.md)]
1313

14-
This article shows you how to automate the creation and update of [Application Insights](./app-insights-overview.md) resources automatically by using Azure Resource Manager. You might, for example, do so as part of a build process. Along with the basic Application Insights resource, you can create [availability web tests](./monitor-web-app-availability.md), set up [alerts](../alerts/alerts-log.md), set the [pricing scheme](../logs/cost-logs.md#application-insights-billing), and create other Azure resources.
14+
This article shows you how to automate the creation and update of [Application Insights](./app-insights-overview.md) resources automatically by using Azure Resource Manager. You might, for example, do so as part of a build process. Along with the basic Application Insights resource, you can create [availability web tests](./availability-overview.md), set up [alerts](../alerts/alerts-log.md), set the [pricing scheme](../logs/cost-logs.md#application-insights-billing), and create other Azure resources.
1515

1616
The key to creating these resources is JSON templates for [Resource Manager](../../azure-resource-manager/management/manage-resources-powershell.md). The basic procedure is:
1717

articles/azure-monitor/app/sharepoint.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In the [Azure portal](https://portal.azure.com), create a new Application Insigh
1818

1919
![Click Properties, select the key, and press ctrl+C](./media/sharepoint/001.png)
2020

21-
The window that opens is the place where you'll see performance and usage data about your app. To get back to it next time you login to Azure, you should find a tile for it on the start screen. Alternatively click Browse to find it.
21+
The window that opens is the place where you'll see performance and usage data about your app. To get back to it next time you sign in to Azure, you should find a tile for it on the start screen. Alternatively select Browse to find it.
2222

2323
## Add the script to your web pages
2424

@@ -47,7 +47,7 @@ cfg: { // Application Insights Configuration
4747
```
4848

4949
> [!NOTE]
50-
> The Url for SharePoint uses a different module format "...\ai.2.gbl.min.js" (note the additional **.gbl.**) this alternate module format is required to avoid an issue caused by the order that scripts are loaded, which will cause the SDK to fail to initialize and will result in the lose of telemetry events.
50+
> The Url for SharePoint uses a different module format "...\ai.2.gbl.min.js" (note the additional **.gbl.**) this alternate module format is required to avoid an issue caused by the order that scripts are loaded, which will cause the SDK to fail to initialize and will result in the loss of telemetry events.
5151
>
5252
> The issue is caused by requireJS being loaded and initialized before the SDK.
5353
@@ -81,14 +81,14 @@ Redeploy your app.
8181

8282
Return to your application pane in the [Azure portal](https://portal.azure.com).
8383

84-
The first events will appear in Search.
84+
The first events appear in Search.
8585

8686
![Screenshot that shows the new data that you can view in the app.](./media/sharepoint/09-search.png)
8787

88-
Click Refresh after a few seconds if you're expecting more data.
88+
Select Refresh after a few seconds if you're expecting more data.
8989

9090
## Capturing User Id
91-
The standard web page code snippet doesn't capture the user id from SharePoint, but you can do that with a small modification.
91+
The standard web page code snippet doesn't capture the user ID from SharePoint, but you can do that with a small modification.
9292

9393
1. Copy your app's instrumentation key from the Essentials drop-down in Application Insights.
9494

@@ -147,7 +147,7 @@ function onRequestFail(sender, args) {
147147

148148

149149
## Next Steps
150-
* [Web tests](./monitor-web-app-availability.md) to monitor the availability of your site.
150+
* [Availability overview](./availability-overview.md) to monitor the availability of your site.
151151
* [Application Insights](./app-insights-overview.md) for other types of app.
152152

153153
<!--Link references-->

articles/azure-monitor/app/sla-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ The report can be shared with your teams and leadership or pinned to a dashboard
7070

7171
- Learn some [Log Analytics query optimization tips](../logs/query-optimization.md).
7272
- Learn how to [create a chart in workbooks](../visualize/workbooks-chart-visualizations.md).
73-
- Learn how to monitor your website with [availability tests](monitor-web-app-availability.md).
73+
- Learn how to monitor your website with [availability tests](availability-overview.md).

articles/azure-monitor/app/standard-metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Standard metrics are pre-aggregated during collection, they have better performa
1313

1414
## Availability metrics
1515

16-
Metrics in the Availability category enable you to see the health of your web application as observed from points around the world. [Configure the availability tests](../app/monitor-web-app-availability.md) to start using any metrics from this category.
16+
Metrics in the Availability category enable you to see the health of your web application as observed from points around the world. [Configure the availability tests](../app/availability-overview.md) to start using any metrics from this category.
1717

1818
### Availability (availabilityResults/availabilityPercentage)
1919
The *Availability* metric shows the percentage of the web test runs that didn't detect any issues. The lowest possible value is 0, which indicates that all of the web test runs have failed. The value of 100 means that all of the web test runs passed the validation criteria.

articles/azure-monitor/app/status-monitor-v2-api-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ Timeout Reached. Stopping...
644644
- [Create dashboards](./overview-dashboard.md).
645645

646646
Add more telemetry:
647-
- [Create web tests](monitor-web-app-availability.md) to make sure your site stays live.
647+
[Availability overview](availability-overview.md)
648648
- [Add web client telemetry](./javascript.md) to see exceptions from web page code and to enable trace calls.
649649
- [Add the Application Insights SDK to your code](./asp-net.md) so you can insert trace and log calls.
650650

0 commit comments

Comments
 (0)