Skip to content

Commit 92a6bf0

Browse files
authored
Merge pull request #115794 from craigcaseyMSFT/vcraic0518
fix broken links from OPS report
2 parents fbae51b + 512cd71 commit 92a6bf0

18 files changed

+27
-29
lines changed

.openpublishing.redirection.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17809,12 +17809,12 @@
1780917809
},
1781017810
{
1781117811
"source_path": "articles/synapse-analytics/quickstart-create-apache-spark-pool.md",
17812-
"redirect_url": "/synapse-analytics/quickstart-create-apache-spark-pool-portal",
17812+
"redirect_url": "/azure/synapse-analytics/quickstart-create-apache-spark-pool-portal",
1781317813
"redirect_document_id": false
1781417814
},
1781517815
{
1781617816
"source_path": "articles/synapse-analytics/quickstart-create-sql-pool.md",
17817-
"redirect_url": "azure/synapse-analytics/quickstart-create-sql-pool-portal",
17817+
"redirect_url": "/azure/synapse-analytics/quickstart-create-sql-pool-portal",
1781817818
"redirect_document_id": false
1781917819
},
1782017820
{

articles/azure-monitor/app/app-insights-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ There are plenty of ways to explore your data. Check out these articles:
4545

4646
| | |
4747
| --- | --- |
48-
| [**Smart detection and manual alerts**](../../azure-monitor/app/proactive-diagnostics.md)<br/>Set up automatic alerts that adapt to your app's normal patterns of telemetry and trigger when there's something outside the usual pattern. You can also [set alerts](../../azure-monitor/app/alerts.md) on particular levels of custom or standard metrics. |![Alert sample](./media/app-insights-overview/alerts-tn.png) |
48+
| [**Smart detection and manual alerts**](../../azure-monitor/app/proactive-diagnostics.md)<br/>Set up automatic alerts that adapt to your app's normal patterns of telemetry and trigger when there's something outside the usual pattern. You can also [set alerts](../../azure-monitor/platform/alerts-log.md) on particular levels of custom or standard metrics. |![Alert sample](./media/app-insights-overview/alerts-tn.png) |
4949
| [**Application map**](../../azure-monitor/app/app-map.md)<br/>Explore the components of your app, with key metrics and alerts. |![Application map](./media/app-insights-overview/appmap-tn.png) |
5050
| [**Profiler**](../../azure-monitor/app/profiler.md)<br/>Inspect the execution profiles of sampled requests. |![Profiler](./media/app-insights-overview/profiler.png) |
5151
| [**Usage analysis**](../../azure-monitor/app/usage-overview.md)<br/>Analyze user segmentation and retention.|![Retention tool](./media/app-insights-overview/retention.png) |

articles/azure-monitor/app/asp-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ There are alternative topics to look at if you are interested in:
135135

136136
* [Availability tests](../../azure-monitor/app/monitor-web-app-availability.md): Create tests to make sure your site is visible on the web.
137137
* [Smart diagnostics](../../azure-monitor/app/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.
138-
* [Metric alerts](../../azure-monitor/app/alerts.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.
138+
* [Metric alerts](../../azure-monitor/platform/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.
139139

140140
### Automation
141141

articles/azure-monitor/app/eventcounters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ customMetrics
120120
Like other telemetry, **customMetrics** also has a column `cloud_RoleInstance` that indicates the identity of the host server instance on which your app is running. The above query shows the counter value per instance, and can be used to compare performance of different server instances.
121121

122122
## Alerts
123-
Like other metrics, you can [set an alert](../../azure-monitor/app/alerts.md) to warn you if an event counter goes outside a limit you specify. Open the Alerts pane and click Add Alert.
123+
Like other metrics, you can [set an alert](../../azure-monitor/platform/alerts-log.md) to warn you if an event counter goes outside a limit you specify. Open the Alerts pane and click Add Alert.
124124

125125
## Frequently asked questions
126126

articles/azure-monitor/app/how-do-i.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 04/04/2017
1212
Set an [availability web test](../../azure-monitor/app/monitor-web-app-availability.md).
1313

1414
### Email if my site is overloaded
15-
Set an [alert](../../azure-monitor/app/alerts.md) on **Server response time**. A threshold between 1 and 2 seconds should work.
15+
Set an [alert](../../azure-monitor/platform/alerts-log.md) on **Server response time**. A threshold between 1 and 2 seconds should work.
1616

1717
![](./media/how-do-i/030-server.png)
1818

@@ -22,10 +22,10 @@ If you want to set an alert on **Server exceptions**, you might have to do [some
2222

2323
### Email on exceptions
2424
1. [Set up exception monitoring](../../azure-monitor/app/asp-net-exceptions.md)
25-
2. [Set an alert](../../azure-monitor/app/alerts.md) on the Exception count metric
25+
2. [Set an alert](../../azure-monitor/platform/alerts-log.md) on the Exception count metric
2626

2727
### Email on an event in my app
28-
Let's suppose you'd like to get an email when a specific event occurs. Application Insights doesn't provide this facility directly, but it can [send an alert when a metric crosses a threshold](../../azure-monitor/app/alerts.md).
28+
Let's suppose you'd like to get an email when a specific event occurs. Application Insights doesn't provide this facility directly, but it can [send an alert when a metric crosses a threshold](../../azure-monitor/platform/alerts-log.md).
2929

3030
Alerts can be set on [custom metrics](../../azure-monitor/app/api-custom-events-metrics.md#trackmetric), though not custom events. Write some code to increase a metric when the event occurs:
3131

@@ -61,11 +61,11 @@ Some points to consider:
6161
* Since emails are sent both on "alert" and "healthy", you might want to consider re-thinking your one-shot event as a two-state condition. For example, instead of a "job completed" event, have a "job in progress" condition, where you get emails at the start and end of a job.
6262

6363
### Set up alerts automatically
64-
[Use PowerShell to create new alerts](../../azure-monitor/app/alerts.md#automation)
64+
[Use PowerShell to create new alerts](../../azure-monitor/platform/alerts-log.md)
6565

6666
## Use PowerShell to Manage Application Insights
6767
* [Create new resources](https://docs.microsoft.com/azure/azure-monitor/app/create-new-resource#creating-a-resource-automatically)
68-
* [Create new alerts](../../azure-monitor/app/alerts.md#automation)
68+
* [Create new alerts](../../azure-monitor/platform/alerts-log.md)
6969

7070
## Separate telemetry from different versions
7171

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,4 +458,4 @@ For more detailed information about how to use queries and logs, see [Logs in Az
458458

459459
* [Availability tests](../../azure-monitor/app/monitor-web-app-availability.md): Create tests to make sure your site is visible on the web.
460460
* [Smart diagnostics](../../azure-monitor/app/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.
461-
* [Metric alerts](../../azure-monitor/app/alerts.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.
461+
* [Metric alerts](../../azure-monitor/platform/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/performance-counters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Support for performance counters in ASP.NET Core is limited:
143143
* SDK Versions 2.8.0 and later support cpu/memory counter in Linux. No other counter is supported in Linux. The recommended way to get system counters in Linux (and other non-Windows environments) is by using [EventCounters](eventcounters.md)
144144

145145
## Alerts
146-
Like other metrics, you can [set an alert](../../azure-monitor/app/alerts.md) to warn you if a performance counter goes outside a limit you specify. Open the Alerts pane and click Add Alert.
146+
Like other metrics, you can [set an alert](../../azure-monitor/platform/alerts-log.md) to warn you if a performance counter goes outside a limit you specify. Open the Alerts pane and click Add Alert.
147147

148148
## <a name="next"></a>Next steps
149149

articles/azure-monitor/app/powershell-alerts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 10/31/2016
1010

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

13-
You can automate the configuration of [alerts](../../azure-monitor/app/alerts.md) in [Application Insights](../../azure-monitor/app/app-insights-overview.md).
13+
You can automate the configuration of [alerts](../../azure-monitor/platform/alerts-log.md) in [Application Insights](../../azure-monitor/app/app-insights-overview.md).
1414

1515
In addition, you can [set webhooks to automate your response to an alert](../../azure-monitor/platform/alerts-webhooks.md).
1616

articles/azure-monitor/app/powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 05/02/2020
1010

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

13-
This article shows you how to automate the creation and update of [Application Insights](../../azure-monitor/app/app-insights-overview.md) resources automatically by using Azure Resource Management. 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](../../azure-monitor/app/monitor-web-app-availability.md), set up [alerts](../../azure-monitor/app/alerts.md), set the [pricing scheme](pricing.md), and create other Azure resources.
13+
This article shows you how to automate the creation and update of [Application Insights](../../azure-monitor/app/app-insights-overview.md) resources automatically by using Azure Resource Management. 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](../../azure-monitor/app/monitor-web-app-availability.md), set up [alerts](../../azure-monitor/platform/alerts-log.md), set the [pricing scheme](pricing.md), and create other Azure resources.
1414

1515
The key to creating these resources is JSON templates for [Azure Resource Manager](../../azure-resource-manager/management/manage-resources-powershell.md). The basic procedure is: download the JSON definitions of existing resources; parameterize certain values such as names; and then run the template whenever you want to create a new resource. You can package several resources together, to create them all in one go - for example, an app monitor with availability tests, alerts, and storage for continuous export. There are some subtleties to some of the parameterizations, which we'll explain here.
1616

articles/azure-monitor/app/proactive-diagnostics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ These diagnostic tools help you inspect the telemetry from your app:
5555

5656
Smart Detection is completely automatic. But maybe you'd like to set up some more alerts?
5757

58-
* [Manually configured metric alerts](../../azure-monitor/app/alerts.md)
58+
* [Manually configured metric alerts](../../azure-monitor/platform/alerts-log.md)
5959
* [Availability web tests](../../azure-monitor/app/monitor-web-app-availability.md)
6060

0 commit comments

Comments
 (0)