Skip to content

Commit 67fb7ba

Browse files
Merge pull request #235668 from v-jbasden/v-jbasden-app-insights-mar-freshness-2
[BULK UPDATE #2] Updating ms.date metadata
2 parents 03ea62f + bcbd758 commit 67fb7ba

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Monitor ASP.NET Core web applications for availability, performance
44
ms.topic: conceptual
55
ms.devlang: csharp
66
ms.custom: devx-track-csharp
7-
ms.date: 03/22/2023
7+
ms.date: 04/24/2023
88
ms.reviewer: casocha
99
---
1010
# Application Insights for ASP.NET Core applications

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Configure monitoring for ASP.NET with Azure Application Insights | Microsoft Docs
33
description: Configure performance, availability, and user behavior analytics tools for your ASP.NET website hosted on-premises or in Azure.
44
ms.topic: conceptual
5-
ms.date: 03/22/2023
5+
ms.date: 04/24/2023
66
ms.devlang: csharp
77
ms.custom: contperf-fy21q1
88
---
@@ -42,7 +42,7 @@ To add Application Insights to your ASP.NET website, you need to:
4242

4343
## Add Application Insights automatically
4444

45-
This section will guide you through automatically adding Application Insights to a template-based ASP.NET web app. From within your ASP.NET web app project in Visual Studio:
45+
This section guides you through automatically adding Application Insights to a template-based ASP.NET web app. From within your ASP.NET web app project in Visual Studio:
4646

4747
1. Select **Project** > **Add Application Insights Telemetry** > **Application Insights Sdk (local)** > **Next** > **Finish** > **Close**.
4848
2. Open the *ApplicationInsights.config* file.
@@ -53,11 +53,11 @@ This section will guide you through automatically adding Application Insights to
5353
```
5454

5555
4. Select **Project** > **Manage NuGet Packages** > **Updates**. Then update each `Microsoft.ApplicationInsights` NuGet package to the latest stable release.
56-
5. Run your application by selecting **IIS Express**. A basic ASP.NET app opens. As you browse through the pages on the site, telemetry will be sent to Application Insights.
56+
5. Run your application by selecting **IIS Express**. A basic ASP.NET app opens. As you browse through the pages on the site, telemetry is sent to Application Insights.
5757

5858
## Add Application Insights manually
5959

60-
This section will guide you through manually adding Application Insights to a template-based ASP.NET web app. This section assumes that you're using a web app based on the standard MVC web app template for the ASP.NET Framework.
60+
This section guides you through manually adding Application Insights to a template-based ASP.NET web app. This section assumes that you're using a web app based on the standard MVC web app template for the ASP.NET Framework.
6161

6262
1. Add the following NuGet packages and their dependencies to your project:
6363

@@ -67,7 +67,7 @@ This section will guide you through manually adding Application Insights to a te
6767

6868
2. In some cases, the *ApplicationInsights.config* file is created for you automatically. If the file is already present, skip to step 4.
6969

70-
If it's not created automatically, you'll need to create it yourself. In the root directory of an ASP.NET application, create a new file called *ApplicationInsights.config*.
70+
If it's not created automatically, you need to create it yourself. In the root directory of an ASP.NET application, create a new file called *ApplicationInsights.config*.
7171

7272
3. Copy the following XML configuration into your newly created file:
7373

@@ -359,7 +359,7 @@ You have now successfully configured server-side application monitoring. If you
359359

360360
The previous sections provided guidance on methods to automatically and manually configure server-side monitoring. To add client-side monitoring, use the [client-side JavaScript SDK](javascript.md). You can monitor any web page's client-side transactions by adding a [JavaScript snippet](javascript.md#snippet-based-setup) before the closing `</head>` tag of the page's HTML.
361361

362-
Although it's possible to manually add the snippet to the header of each HTML page, we recommend that you instead add the snippet to a primary page. That action will inject the snippet into all pages of a site.
362+
Although it's possible to manually add the snippet to the header of each HTML page, we recommend that you instead add the snippet to a primary page. That action injects the snippet into all pages of a site.
363363

364364
For the template-based ASP.NET MVC app from this article, the file that you need to edit is *_Layout.cshtml*. You can find it under **Views** > **Shared**. To add client-side monitoring, open *_Layout.cshtml* and follow the [snippet-based setup instructions](javascript.md#snippet-based-setup) from the article about client-side JavaScript SDK configuration.
365365

0 commit comments

Comments
 (0)