Skip to content

Commit 3863192

Browse files
authored
Merge pull request #92534 from bwren/am-metadata-app-01
Azure Monitor metadata - app 01
2 parents 099d61f + b5aa1f0 commit 3863192

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+269
-445
lines changed

articles/azure-monitor/app/alerts.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
---
22
title: Set Alerts in Azure Application Insights | Microsoft Docs
33
description: Get notified about slow response times, exceptions, and other performance or usage changes in your web app.
4-
services: application-insights
5-
documentationcenter: ''
6-
author: mrbullwinkle
7-
manager: carmonm
8-
ms.reviewer: lagayhar
9-
ms.assetid: f8ebde72-f819-4ba5-afa2-31dbd49509a5
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 01/23/2019
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 01/23/2019
1610

11+
ms.reviewer: lagayhar
1712
---
13+
1814
# Set Alerts in Application Insights
1915
[Azure Application Insights][start] can alert you to changes in performance or usage metrics in your web app.
2016

articles/azure-monitor/app/annotations.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
---
22
title: Release annotations for Application Insights | Microsoft Docs
33
description: Add deployment or build markers to your metrics explorer charts in Application Insights.
4-
services: application-insights
5-
documentationcenter: .net
6-
author: mrbullwinkle
7-
manager: carmonm
8-
9-
ms.assetid: 23173e33-d4f2-4528-a730-913a8fd5f02e
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 07/01/2019
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 07/01/2019
1610

1711
---
12+
1813
# Annotations on metric charts in Application Insights
1914

2015
Annotations on [Metrics Explorer](../../azure-monitor/app/metrics-explorer.md) charts show where you deployed a new build, or other significant events. Annotations make it easy to see whether your changes had any effect on your application's performance. They can be automatically created by the [Azure Pipelines](https://docs.microsoft.com/azure/devops/pipelines/tasks/) build system. You can also create annotations to flag any event you like by creating them from PowerShell.

articles/azure-monitor/app/api-custom-events-metrics.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,15 @@
11
---
22
title: Application Insights API for custom events and metrics | Microsoft Docs
33
description: Insert a few lines of code in your device or desktop app, webpage, or service, to track usage and diagnose issues.
4-
services: application-insights
5-
documentationcenter: ''
6-
author: mrbullwinkle
7-
manager: carmonm
8-
ms.assetid: 80400495-c67b-4468-a92e-abf49793a54d
9-
ms.service: application-insights
10-
ms.workload: tbd
11-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
126
ms.topic: conceptual
13-
ms.date: 03/27/2019
7+
author: mrbullwinkle
148
ms.author: mbullwin
9+
ms.date: 03/27/2019
1510

1611
---
12+
1713
# Application Insights API for custom events and metrics
1814

1915
Insert a few lines of code in your application to find out what users are doing with it, or to help diagnose issues. You can send telemetry from device and desktop apps, web clients, and web servers. Use the [Azure Application Insights](../../azure-monitor/app/app-insights-overview.md) core telemetry API to send custom events and metrics, and your own versions of standard telemetry. This API is the same API that the standard Application Insights data collectors use.
@@ -1180,8 +1176,8 @@ To determine how long data is kept, see [Data retention and privacy](../../azure
11801176

11811177
## Reference docs
11821178

1183-
* [ASP.NET reference](https://docs.microsoft.com/en-us/dotnet/api/overview/azure/insights?view=azure-dotnet)
1184-
* [Java reference](https://docs.microsoft.com/en-us/java/api/overview/azure/appinsights?view=azure-java-stable/)
1179+
* [ASP.NET reference](https://docs.microsoft.com/dotnet/api/overview/azure/insights?view=azure-dotnet)
1180+
* [Java reference](https://docs.microsoft.com/java/api/overview/azure/appinsights?view=azure-java-stable/)
11851181
* [JavaScript reference](https://github.com/Microsoft/ApplicationInsights-JS/blob/master/API-reference.md)
11861182

11871183

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

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
---
22
title: Filtering and preprocessing in the Azure Application Insights SDK | Microsoft Docs
33
description: Write Telemetry Processors and Telemetry Initializers for the SDK to filter or add properties to the data before the telemetry is sent to the Application Insights portal.
4-
services: application-insights
5-
documentationcenter: ''
6-
author: mrbullwinkle
7-
manager: carmonm
8-
9-
ms.assetid: 38a9e454-43d5-4dba-a0f0-bd7cd75fb97b
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 11/23/2016
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 11/23/2016
1610

1711
---
12+
1813
# Filtering and preprocessing telemetry in the Application Insights SDK
1914

2015
You can write and configure plug-ins for the Application Insights SDK to customize how telemetry can be enriched and processed before it's sent to the Application Insights service.

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

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
---
22
title: What is Azure Application Insights? | Microsoft Docs
33
description: Application Performance Management and usage tracking of your live web application. Detect, triage and diagnose problems, understand how people use your app.
4-
services: application-insights
5-
documentationcenter: ''
6-
author: mrbullwinkle
7-
manager: carmonm
8-
ms.assetid: 379721d1-0f82-445a-b416-45b94cb969ec
9-
ms.service: application-insights
10-
ms.workload: tbd
11-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
126
ms.topic: overview
13-
ms.custom: mvc
14-
ms.date: 06/03/2019
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 06/03/2019
10+
11+
ms.custom: mvc
1612
---
13+
1714
# What is Application Insights?
1815
Application Insights, a feature of [Azure Monitor](../overview.md), is an extensible Application Performance Management (APM) service for web developers on multiple platforms. Use it to monitor your live web application. It will automatically detect performance anomalies. It includes powerful analytics tools to help you diagnose issues and to understand what users actually do with your app. It's designed to help you continuously improve performance and usability. It works for apps on a wide variety of platforms including .NET, Node.js and Java EE, hosted on-premises, hybrid, or any public cloud. It integrates with your DevOps process, and has connection points to a variety of development tools. It can monitor and analyze telemetry from mobile apps by integrating with Visual Studio App Center.
1916

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

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
---
22
title: Application Map in Azure Application Insights | Microsoft Docs
33
description: Monitor complex application topologies with the application map
4-
services: application-insights
5-
documentationcenter: ''
6-
author: mrbullwinkle
7-
manager: carmonm
8-
9-
ms.assetid: 3bf37fe9-70d7-4229-98d6-4f624d256c36
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 03/15/2019
15-
ms.reviewer: sdash
7+
author: mrbullwinkle
168
ms.author: mbullwin
9+
ms.date: 03/15/2019
1710

11+
ms.reviewer: sdash
1812
---
13+
1914
# Application Map: Triage Distributed Applications
2015

2116
Application Map helps you spot performance bottlenecks or failure hotspots across all components of your distributed application. Each node on the map represents an application component or its dependencies; and has health KPI and alerts status. You can click through from any component to more detailed diagnostics, such as Application Insights events. If your app uses Azure services, you can also click through to Azure diagnostics, such as SQL Database Advisor recommendations.

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

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
---
22
title: Azure Application Insights for ASP.NET Core applications | Microsoft Docs
33
description: Monitor ASP.NET Core web applications for availability, performance, and usage.
4-
services: application-insights
5-
documentationcenter: .net
6-
author: mrbullwinkle
7-
manager: carmonm
8-
ms.assetid: 3b722e47-38bd-4667-9ba4-65b7006c074c
9-
ms.service: application-insights
10-
ms.workload: tbd
11-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
126
ms.topic: conceptual
13-
ms.date: 05/22/2019
7+
author: mrbullwinkle
148
ms.author: mbullwin
9+
ms.date: 05/22/2019
10+
1511
---
1612

1713
# Application Insights for ASP.NET Core applications

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

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
---
22
title: Dependency Tracking in Azure Application Insights | Microsoft Docs
33
description: Monitor dependency calls from your on-premises or Microsoft Azure web application with Application Insights.
4-
services: application-insights
5-
documentationcenter: .net
6-
author: mrbullwinkle
7-
manager: carmonm
8-
9-
ms.assetid: d15c4ca8-4c1a-47ab-a03d-c322b4bb2a9e
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 06/25/2019
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 06/25/2019
1610

1711
---
12+
1813
# Dependency Tracking in Azure Application Insights
1914

2015
A *dependency* is an external component that is called by your app. It's typically a service called using HTTP, or a database, or a file system. [Application Insights](../../azure-monitor/app/app-insights-overview.md) measures the duration of dependency calls, whether its failing or not, along with additional information like name of dependency and so on. You can investigate specific dependency calls, and correlate them to requests and exceptions.

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

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
---
22
title: Diagnose failures and exceptions in web apps with Azure Application Insights | Microsoft Docs
33
description: Capture exceptions from ASP.NET apps along with request telemetry.
4-
services: application-insights
5-
documentationcenter: .net
6-
author: mrbullwinkle
7-
manager: carmonm
8-
9-
ms.assetid: d1e98390-3ce4-4d04-9351-144314a42aa2
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 07/11/2019
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 07/11/2019
1610

1711
---
12+
1813
# Diagnose exceptions in your web apps with Application Insights
1914
Exceptions in your live web app are reported by [Application Insights](../../azure-monitor/app/app-insights-overview.md). You can correlate failed requests with exceptions and other events at both the client and server, so that you can quickly diagnose the causes.
2015

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

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
---
22
title: Get more out of Azure Application Insights | Microsoft Docs
33
description: After getting started with Application Insights, here's a summary of the features you can explore.
4-
services: application-insights
5-
documentationcenter: .net
6-
author: mrbullwinkle
7-
manager: carmonm
8-
9-
ms.assetid: 7ec10a2d-c669-448d-8d45-b486ee32c8db
10-
ms.service: application-insights
11-
ms.workload: tbd
12-
ms.tgt_pltfrm: ibiza
4+
ms.service: azure-monitor
5+
ms.subservice: application-insights
136
ms.topic: conceptual
14-
ms.date: 02/03/2017
7+
author: mrbullwinkle
158
ms.author: mbullwin
9+
ms.date: 02/03/2017
1610

1711
---
12+
1813
# More telemetry from Application Insights
1914
After you have [added Application Insights to your ASP.NET code](../../azure-monitor/app/asp-net.md), there are a few things you can do to get even more telemetry.
2015

0 commit comments

Comments
 (0)