Skip to content

Commit fa42101

Browse files
author
Kai Nawroth
authored
Update live-stream.md
1 parent e7c8b47 commit fa42101

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
---
2-
title: Diagnose with Live Metrics Stream - Azure Application Insights
2+
title: Diagnose with Live Metrics - Azure Application Insights
33
description: Monitor your web app in real time with custom metrics, and diagnose issues with a live feed of failures, traces, and events.
44
ms.topic: conceptual
55
ms.date: 05/31/2022
66
ms.reviewer: sdash
77
ms.devlang: csharp
88
---
99

10-
# Live Metrics Stream: Monitor & Diagnose with 1-second latency
10+
# Live Metrics: Monitor & Diagnose with 1-second latency
1111

12-
Monitor your live, in-production web application by using Live Metrics Stream (also known as QuickPulse) from [Application Insights](./app-insights-overview.md). Select and filter metrics and performance counters to watch in real time, without any disturbance to your service. Inspect stack traces from sample failed requests and exceptions. Together with [Profiler](./profiler.md) and [Snapshot debugger](./snapshot-debugger.md), Live Metrics Stream provides a powerful and non-invasive diagnostic tool for your live website.
12+
Monitor your live, in-production web application by using Live Metrics (also known as QuickPulse) from [Application Insights](./app-insights-overview.md). Select and filter metrics and performance counters to watch in real time, without any disturbance to your service. Inspect stack traces from sample failed requests and exceptions. Together with [Profiler](./profiler.md) and [Snapshot debugger](./snapshot-debugger.md), Live Metrics provides a powerful and non-invasive diagnostic tool for your live website.
1313

1414
> [!NOTE]
1515
> Live Metrics only supports TLS 1.2. For more information, refer to [Troubleshooting](#troubleshooting).
1616
17-
With Live Metrics Stream, you can:
17+
With Live Metrics, you can:
1818

1919
* Validate a fix while it's released, by watching performance and failure counts.
2020
* Watch the effect of test loads, and diagnose issues live.
@@ -29,7 +29,7 @@ With Live Metrics Stream, you can:
2929
Live Metrics are currently supported for ASP.NET, ASP.NET Core, Azure Functions, Java, and Node.js apps.
3030

3131
> [!NOTE]
32-
> The number of monitored server instances displayed by Live Metrics Stream may be lower than the actual number of instances allocated for the application. This is because many modern web servers will unload applications that do not receive requests over a period of time in order to conserve resources. Since Live Metrics Stream only counts servers that are currently running the application, servers that have already unloaded the process will not be included in that total.
32+
> The number of monitored server instances displayed by Live Metrics may be lower than the actual number of instances allocated for the application. This is because many modern web servers will unload applications that do not receive requests over a period of time in order to conserve resources. Since Live Metrics only counts servers that are currently running the application, servers that have already unloaded the process will not be included in that total.
3333
3434
## Get started
3535

@@ -46,7 +46,7 @@ Live Metrics are currently supported for ASP.NET, ASP.NET Core, Azure Functions,
4646
3. [Secure the control channel](#secure-the-control-channel) if you might use sensitive data such as customer names in your filters.
4747

4848
> [!IMPORTANT]
49-
> Monitoring ASP.NET Core [LTS](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) applications require Application Insights version 2.8.0 or above. To enable Application Insights ensure it is both activated in the Azure Portal and that the Application Insights NuGet package is included. Without the NuGet package some telemetry is sent to Application Insights but that telemetry will not show in the Live Metrics Stream.
49+
> Monitoring ASP.NET Core [LTS](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) applications require Application Insights version 2.8.0 or above. To enable Application Insights ensure it is both activated in the Azure Portal and that the Application Insights NuGet package is included. Without the NuGet package some telemetry is sent to Application Insights but that telemetry will not show in Live Metrics.
5050
5151
[!INCLUDE [azure-monitor-log-analytics-rebrand](../../../includes/azure-monitor-instrumentation-key-deprecation.md)]
5252

@@ -102,7 +102,7 @@ namespace LiveMetricsDemo
102102
while (true)
103103
{
104104
// Send dependency and request telemetry.
105-
// These will be shown in Live Metrics stream.
105+
// These will be shown in Live Metrics.
106106
// CPU/Memory Performance counter is also shown
107107
// automatically without any additional steps.
108108
client.TrackDependency("My dependency", "target", "http://sample",
@@ -118,7 +118,7 @@ namespace LiveMetricsDemo
118118

119119
While the above sample is for a console app, the same code can be used in any .NET applications. If any other TelemetryModules are enabled which auto-collects telemetry, it's important to ensure the same configuration used for initializing those modules is used for Live Metrics module as well.
120120

121-
## How does Live Metrics Stream differ from Metrics Explorer and Analytics?
121+
## How does Live Metrics differ from Metrics Explorer and Analytics?
122122

123123
| |Live Stream | Metrics Explorer and Analytics |
124124
|---|---|---|
@@ -268,7 +268,7 @@ Basic metrics include request, dependency, and exception rate. Performance metri
268268

269269
## Troubleshooting
270270

271-
Live Metrics Stream uses different IP addresses than other Application Insights telemetry. Make sure [those IP addresses](./ip-addresses.md) are open in your firewall. Also check the [outgoing ports for Live Metrics Stream](./ip-addresses.md#outgoing-ports) are open in the firewall of your servers.
271+
Live Metrics uses different IP addresses than other Application Insights telemetry. Make sure [those IP addresses](./ip-addresses.md) are open in your firewall. Also check the [outgoing ports for Live Metrics](./ip-addresses.md#outgoing-ports) are open in the firewall of your servers.
272272

273273
As described in the [Azure TLS 1.2 migration announcement](https://azure.microsoft.com/updates/azuretls12/), Live Metrics now only supports TLS 1.2. If you are using an older version of TLS, Live Metrics will not display any data. For applications based on .NET Framework 4.5.1, refer to [How to enable Transport Layer Security (TLS) 1.2 on clients - Configuration Manager](/mem/configmgr/core/plan-design/security/enable-tls-1-2-client#bkmk_net) to support newer TLS version.
274274

0 commit comments

Comments
 (0)