Skip to content

Commit a7baf96

Browse files
committed
fixing broken bookmarks
1 parent 1171360 commit a7baf96

11 files changed

+14
-15
lines changed

articles/azure-government/compare-azure-government-global-azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ Application Insights (part of Azure Monitor) enables the same features in both A
294294

295295
**Visual Studio** - In Azure Government, you can enable monitoring on your ASP.NET, ASP.NET Core, Java, and Node.js based applications running on Azure App Service. For more information, see [Application monitoring for Azure App Service overview](../azure-monitor/app/azure-web-apps.md). In Visual Studio, go to Tools|Options|Accounts|Registered Azure Clouds|Add New Azure Cloud and select Azure US Government as the Discovery endpoint. After that, adding an account in File|Account Settings will prompt you for which cloud you want to add from.
296296

297-
**SDK endpoint modifications** - In order to send data from Application Insights to an Azure Government region, you'll need to modify the default endpoint addresses that are used by the Application Insights SDKs. Each SDK requires slightly different modifications, as described in [Application Insights overriding default endpoints](../azure-monitor/app/create-new-resource.md#application-insights-overriding-default-endpoints).
297+
**SDK endpoint modifications** - In order to send data from Application Insights to an Azure Government region, you'll need to modify the default endpoint addresses that are used by the Application Insights SDKs. Each SDK requires slightly different modifications, as described in [Application Insights overriding default endpoints](../azure-monitor/app/create-new-resource.md#override-default-endpoints).
298298

299299
**Firewall exceptions** - Application Insights uses several IP addresses. You might need to know these addresses if the app that you're monitoring is hosted behind a firewall. For more information, see [IP addresses used by Azure Monitor](../azure-monitor/app/ip-addresses.md) from where you can download Azure Government IP addresses.
300300

articles/azure-monitor/app/api-filtering-sampling.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ ASP.NET **Core/Worker service apps**
118118
> [!NOTE]
119119
> Adding a processor by using `ApplicationInsights.config` or `TelemetryConfiguration.Active` isn't valid for ASP.NET Core applications or if you're using the Microsoft.ApplicationInsights.WorkerService SDK.
120120
121-
For apps written by using [ASP.NET Core](asp-net-core.md#adding-telemetry-processors) or [WorkerService](worker-service.md#add-telemetry-processors), adding a new telemetry processor is done by using the `AddApplicationInsightsTelemetryProcessor` extension method on `IServiceCollection`, as shown. This method is called in the `ConfigureServices` method of your `Startup.cs` class.
121+
For apps written by using [ASP.NET Core](asp-net-core.md#add-telemetry-processors) or [WorkerService](worker-service.md#add-telemetry-processors), adding a new telemetry processor is done by using the `AddApplicationInsightsTelemetryProcessor` extension method on `IServiceCollection`, as shown. This method is called in the `ConfigureServices` method of your `Startup.cs` class.
122122

123123
```csharp
124124
public void ConfigureServices(IServiceCollection services)
@@ -305,7 +305,7 @@ ASP.NET **Core/Worker service apps: Load your initializer**
305305
> [!NOTE]
306306
> Adding an initializer by using `ApplicationInsights.config` or `TelemetryConfiguration.Active` isn't valid for ASP.NET Core applications or if you're using the Microsoft.ApplicationInsights.WorkerService SDK.
307307
308-
For apps written using [ASP.NET Core](asp-net-core.md#adding-telemetryinitializers) or [WorkerService](worker-service.md#add-telemetry-initializers), adding a new telemetry initializer is done by adding it to the Dependency Injection container, as shown. Accomplish this step in the `Startup.ConfigureServices` method.
308+
For apps written using [ASP.NET Core](asp-net-core.md#add-telemetryinitializers) or [WorkerService](worker-service.md#add-telemetry-initializers), adding a new telemetry initializer is done by adding it to the Dependency Injection container, as shown. Accomplish this step in the `Startup.ConfigureServices` method.
309309

310310
```csharp
311311
using Microsoft.ApplicationInsights.Extensibility;

articles/azure-monitor/app/app-map.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ An alternate method for ASP.NET Web apps is to instantiate the initializer in co
148148
149149
**ASP.NET Core apps: Load an initializer to TelemetryConfiguration**
150150

151-
For [ASP.NET Core](asp-net-core.md#adding-telemetryinitializers) applications, to add a new `TelemetryInitializer` instance, you add it to the Dependency Injection container, as shown. You do this step in the `ConfigureServices` method of your `Startup.cs` class.
151+
For [ASP.NET Core](asp-net-core.md#add-telemetryinitializers) applications, to add a new `TelemetryInitializer` instance, you add it to the Dependency Injection container, as shown. You do this step in the `ConfigureServices` method of your `Startup.cs` class.
152152

153153
```csharp
154154
using Microsoft.ApplicationInsights.Extensibility;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ public void ConfigureServices(IServiceCollection services)
516516

517517
---
518518

519-
In versions 2.12.2 and later, [`ApplicationInsightsServiceOptions`](#using-applicationinsightsserviceoptions) includes an easy option to disable any of the default modules.
519+
In versions 2.12.2 and later, [`ApplicationInsightsServiceOptions`](#use-applicationinsightsserviceoptions) includes an easy option to disable any of the default modules.
520520

521521
### Configure a telemetry channel
522522

@@ -592,7 +592,7 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env, Telemetr
592592

593593
---
594594

595-
The preceding code sample prevents the sending of telemetry to Application Insights. It doesn't prevent any automatic collection modules from collecting telemetry. If you want to remove a particular autocollection module, see [Remove the telemetry module](#configuring-or-removing-default-telemetrymodules).
595+
The preceding code sample prevents the sending of telemetry to Application Insights. It doesn't prevent any automatic collection modules from collecting telemetry. If you want to remove a particular autocollection module, see [Remove the telemetry module](#configure-or-remove-default-telemetrymodules).
596596

597597
## Frequently asked questions
598598

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ To have this data displayed in the dependency charts in Application Insights, se
8282

8383
Alternatively, `TelemetryClient` provides the extension methods `StartOperation` and `StopOperation`, which can be used to manually track dependencies as shown in [Outgoing dependencies tracking](custom-operations-tracking.md#outgoing-dependencies-tracking).
8484

85-
If you want to switch off the standard dependency tracking module, remove the reference to `DependencyTrackingTelemetryModule` in [ApplicationInsights.config](../../azure-monitor/app/configuration-with-applicationinsights-config.md) for ASP.NET applications. For ASP.NET Core applications, follow the instructions in [Application Insights for ASP.NET Core applications](asp-net-core.md#configuring-or-removing-default-telemetrymodules).
85+
If you want to switch off the standard dependency tracking module, remove the reference to `DependencyTrackingTelemetryModule` in [ApplicationInsights.config](../../azure-monitor/app/configuration-with-applicationinsights-config.md) for ASP.NET applications. For ASP.NET Core applications, follow the instructions in [Application Insights for ASP.NET Core applications](asp-net-core.md#configure-or-remove-default-telemetrymodules).
8686

8787
## Track AJAX calls from webpages
8888

@@ -269,7 +269,7 @@ A list of the latest [currently supported modules](https://github.com/microsoft/
269269
* [Exceptions](./asp-net-exceptions.md)
270270
* [User and page data](./javascript.md)
271271
* [Availability](./monitor-web-app-availability.md)
272-
* Set up custom dependency tracking for [Java](java-in-process-agent.md#add-spans-using-the-opentelemetry-annotation).
272+
* Set up custom dependency tracking for [Java](java-in-process-agent.md#add-spans-by-using-the-opentelemetry-annotation).
273273
* Set up custom dependency tracking for [OpenCensus Python](./opencensus-python-dependency.md).
274274
* [Write custom dependency telemetry](./api-custom-events-metrics.md#trackdependency)
275275
* See [data model](./data-model.md) for Application Insights types and data model.

articles/azure-monitor/app/continuous-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Continuous monitoring of your DevOps release pipeline | Microsoft Docs
2+
title: Continuous monitoring of your Azure DevOps release pipeline | Microsoft Docs
33
description: This article provides instructions to quickly set up continuous monitoring with Azure Pipelines and Application Insights.
44
ms.topic: conceptual
55
ms.date: 05/01/2020

articles/azure-monitor/app/java-in-process-agent.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ Add `-javaagent:"path/to/applicationinsights-agent-3.4.7.jar"` to your applicati
6868
> [!TIP]
6969
> For help with configuring your application's JVM args, see [Tips for updating your JVM args](./java-standalone-arguments.md).
7070
71-
> [!TIP]
72-
> If you develop a Spring Boot application, you can replace the JVM argument by a programmatic configuration. For more information, see [Using Azure Monitor Application Insights with Spring Boot](./java-spring-boot.md).
71+
If you develop a Spring Boot application, you can replace the JVM argument by a programmatic configuration. For more information, see [Using Azure Monitor Application Insights with Spring Boot](./java-spring-boot.md).
7372

7473
#### Set the Application Insights connection string
7574

articles/azure-monitor/app/live-stream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ public void ConfigureServices(IServiceCollection services)
230230
}
231231
```
232232

233-
For more information on how to configure ASP.NET Core applications, see [Configuring telemetry modules in ASP.NET Core](./asp-net-core.md#configuring-or-removing-default-telemetrymodules).
233+
For more information on how to configure ASP.NET Core applications, see [Configuring telemetry modules in ASP.NET Core](./asp-net-core.md#configure-or-remove-default-telemetrymodules).
234234

235235
#### WorkerService
236236

articles/azure-monitor/app/powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ Azure should set up the resources in strict order. To make sure one setup comple
472472

473473
See these other automation articles:
474474

475-
* [Create an Application Insights resource](./create-new-resource.md#creating-a-resource-automatically) via a quick method without using a template.
475+
* [Create an Application Insights resource](./create-new-resource.md#create-a-resource-automatically) via a quick method without using a template.
476476
* [Create web tests](../alerts/resource-manager-alerts-metric.md#availability-test-with-metric-alert).
477477
* [Send Azure Diagnostics to Application Insights](../agents/diagnostics-extension-to-application-insights.md).
478478
* [Create release annotations](annotations.md).

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ In the web app initializer, such as Global.asax.cs:
162162
> [!NOTE]
163163
> Adding an initializer by using `ApplicationInsights.config` or `TelemetryConfiguration.Active` isn't valid for ASP.NET Core applications.
164164
165-
For [ASP.NET Core](asp-net-core.md#adding-telemetryinitializers) applications, adding a new telemetry initializer is done by adding it to the Dependency Injection container, as shown here. This step is done in the `ConfigureServices` method of your `Startup.cs` class.
165+
For [ASP.NET Core](asp-net-core.md#add-telemetryinitializers) applications, adding a new telemetry initializer is done by adding it to the Dependency Injection container, as shown here. This step is done in the `ConfigureServices` method of your `Startup.cs` class.
166166

167167
```csharp
168168
using Microsoft.ApplicationInsights.Extensibility;

0 commit comments

Comments
 (0)