Skip to content

Commit deada6e

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/azure-docs-pr into mrb_05_08_2020_APM_2_1
2 parents 8ac7338 + f5ae64c commit deada6e

File tree

5 files changed

+19
-16
lines changed

5 files changed

+19
-16
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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.
44
ms.topic: conceptual
5-
ms.date: 03/27/2019
5+
ms.date: 05/11/2020
66

77
---
88

@@ -1094,17 +1094,15 @@ To determine how long data is kept, see [Data retention and privacy](../../azure
10941094
* [Java reference](https://docs.microsoft.com/java/api/overview/azure/appinsights?view=azure-java-stable/)
10951095
* [JavaScript reference](https://github.com/Microsoft/ApplicationInsights-JS/blob/master/API-reference.md)
10961096

1097-
10981097
## SDK code
10991098

1100-
* [ASP.NET Core SDK](https://github.com/Microsoft/ApplicationInsights-aspnetcore)
1099+
* [ASP.NET Core SDK](https://github.com/Microsoft/ApplicationInsights-dotnet)
11011100
* [ASP.NET](https://github.com/Microsoft/ApplicationInsights-dotnet)
1102-
* [Windows Server packages](https://github.com/Microsoft/applicationInsights-dotnet-server)
1101+
* [Windows Server packages](https://github.com/Microsoft/ApplicationInsights-dotnet)
11031102
* [Java SDK](https://github.com/Microsoft/ApplicationInsights-Java)
11041103
* [Node.js SDK](https://github.com/Microsoft/ApplicationInsights-Node.js)
11051104
* [JavaScript SDK](https://github.com/Microsoft/ApplicationInsights-JS)
11061105

1107-
11081106
## Questions
11091107

11101108
* *What exceptions might Track_() calls throw?*

articles/azure-monitor/app/separate-resources.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
2-
title: Separating telemetry in Azure Application Insights
2+
title: How to design your Application Insights deployment - One vs many resources?
33
description: Direct telemetry to different resources for development, test, and production stamps.
44
ms.topic: conceptual
5-
ms.date: 04/29/2020
5+
ms.date: 05/11/2020
66

77
---
88

9-
# Separating telemetry from Development, Test, and Production
9+
# How many Application Insights resources should I deploy
1010

11-
When you are developing the next version of a web application, you don't want to mix up the [Application Insights](../../azure-monitor/app/app-insights-overview.md) telemetry from the new version and the already released version. To avoid confusion, send the telemetry from different development stages to separate Application Insights resources, with separate instrumentation keys (ikeys). To make it easier to change the instrumentation key as a version moves from one stage to another, it can be useful to set the ikey in code instead of in the configuration file.
11+
When you are developing the next version of a web application, you don't want to mix up the [Application Insights](../../azure-monitor/app/app-insights-overview.md) telemetry from the new version and the already released version. To avoid confusion, send the telemetry from different development stages to separate Application Insights resources, with separate instrumentation keys (ikeys). To make it easier to change the instrumentation key as a version moves from one stage to another, it can be useful to set the ikey in code instead of in the configuration file.
1212

1313
(If your system is an Azure Cloud Service, there's [another method of setting separate ikeys](../../azure-monitor/app/cloudservices.md).)
1414

@@ -18,7 +18,7 @@ When you set up Application Insights monitoring for your web app, you create an
1818

1919
Each Application Insights resource comes with metrics that are available out-of-box. If completely separate components report to the same Application Insights resource, these metrics may not make sense to dashboard/alert on.
2020

21-
### Use a single Application Insights resource
21+
### When to use a single Application Insights resource
2222

2323
- For application components that are deployed together. Usually developed by a single team, managed by the same set of DevOps/ITOps users.
2424
- If it makes sense to aggregate Key Performance Indicators (KPIs) such as response durations, failure rates in dashboard etc., across all of them by default (you can choose to segment by role name in the Metrics Explorer experience).

articles/azure-monitor/app/worker-service.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Application Insights for Worker Service apps (non-HTTP apps)
33
description: Monitoring .NET Core/.NET Framework non-HTTP apps with Azure Monitor Application Insights.
44
ms.topic: conceptual
5-
ms.date: 12/16/2019
5+
ms.date: 05/11/2020
66

77
---
88

@@ -422,7 +422,8 @@ The following automatic-collection modules are enabled by default. These modules
422422
* `DependencyTrackingTelemetryModule`
423423
* `PerformanceCollectorModule`
424424
* `QuickPulseTelemetryModule`
425-
* `AppServicesHeartbeatTelemetryModule`
425+
* `AppServicesHeartbeatTelemetryModule` - (There is currently an issue involving this telemetry module. For a temporary workaround see [GitHub Issue 1689](https://github.com/microsoft/ApplicationInsights-dotnet/issues/1689
426+
).)
426427
* `AzureInstanceMetadataTelemetryModule`
427428

428429
To configure any default `TelemetryModule`, use the extension method `ConfigureTelemetryModule<T>` on `IServiceCollection`, as shown in the following example.

articles/azure-monitor/faq.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.subservice:
66
ms.topic: conceptual
77
author: bwren
88
ms.author: bwren
9-
ms.date: 03/26/2020
9+
ms.date: 05/11/2020
1010

1111
---
1212

@@ -192,12 +192,16 @@ View Designer is only available for users assigned with Contributor permissions
192192
* [Azure diagnostics](platform/diagnostics-extension-to-application-insights.md)
193193
* [Java web app](app/java-troubleshoot.md)
194194

195-
*I get no data from my server*
195+
*I get no data from my server:*
196196

197197
* [Set firewall exceptions](app/ip-addresses.md)
198198
* [Set up an ASP.NET server](app/monitor-performance-live-website-now.md)
199199
* [Set up a Java server](app/java-agent.md)
200200

201+
*How many Application Insights should I deploy?:*
202+
203+
* [How to design your Application Insights deployment: One versus many Application Insights resources?](app/separate-resources.md)
204+
201205
### Can I use Application Insights with ...?
202206

203207
* [Web apps on an IIS server in Azure VM or Azure virtual machine scale set](app/azure-vm-vmss-apps.md)

articles/storage/common/storage-import-export-service-faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: alkohli
55
services: storage
66
ms.service: storage
77
ms.topic: article
8-
ms.date: 03/12/2020
8+
ms.date: 05/06/2020
99
ms.author: alkohli
1010
ms.subservice: common
1111
---
@@ -148,7 +148,7 @@ No. The WAImportExport tool is only compatible with 64-bit Windows operating sys
148148

149149
### Does Azure Import/Export support AES-256 encryption?
150150

151-
No. Azure Import/Export service uses AES-128 BitLocker encryption.
151+
Yes. Azure Import/Export service uses AES-256 BitLocker encryption.
152152

153153
## Next steps
154154

0 commit comments

Comments
 (0)