Skip to content

Commit c321e8c

Browse files
author
Kai Nawroth
committed
Fixing grammar
1 parent edeb9f0 commit c321e8c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Run your application and make requests to it. Telemetry should now flow to Appli
168168

169169
### Live metrics
170170

171-
[Live metrics](./live-stream.md) can be used to quickly verify if Application Insights monitoring is configured correctly. It might take a few minutes for telemetry to appear in the portal and analytics, but the live metrics pane shows CPU usage of the running process in near real time. It can also show other telemetry like requests, dependencies, and traces.
171+
[Live metrics](./live-stream.md) can be used to quickly verify if application monitoring with Application Insights is configured correctly. Telemetry can take a few minutes to appear in the Azure portal, but the live metrics pane shows CPU usage of the running process in near real time. It can also show other telemetry like requests, dependencies, and traces.
172172

173173
#### Enable live metrics by using code for any .NET application
174174

@@ -307,7 +307,7 @@ var aiOptions = new Microsoft.ApplicationInsights.AspNetCore.Extensions.Applicat
307307
// Disables adaptive sampling.
308308
aiOptions.EnableAdaptiveSampling = false;
309309

310-
// Disables live metrics (formerly QuickPulse).
310+
// Disables live metrics (also known as QuickPulse).
311311
aiOptions.EnableQuickPulseMetricStream = false;
312312

313313
builder.Services.AddApplicationInsightsTelemetry(aiOptions);
@@ -324,7 +324,7 @@ public void ConfigureServices(IServiceCollection services)
324324
// Disables adaptive sampling.
325325
aiOptions.EnableAdaptiveSampling = false;
326326

327-
// Disables live metrics (formerly QuickPulse).
327+
// Disables live metrics (also known as QuickPulse).
328328
aiOptions.EnableQuickPulseMetricStream = false;
329329
services.AddApplicationInsightsTelemetry(aiOptions);
330330
}
@@ -509,7 +509,7 @@ By default, the following automatic-collection modules are enabled. These module
509509
* `RequestTrackingTelemetryModule`: Collects RequestTelemetry from incoming web requests.
510510
* `DependencyTrackingTelemetryModule`: Collects [DependencyTelemetry](./asp-net-dependencies.md) from outgoing HTTP calls and SQL calls.
511511
* `PerformanceCollectorModule`: Collects Windows PerformanceCounters.
512-
* `QuickPulseTelemetryModule`: Collects telemetry to show in the live metrics portal.
512+
* `QuickPulseTelemetryModule`: Collects telemetry to show in the live metrics pane.
513513
* `AppServicesHeartbeatTelemetryModule`: Collects heartbeats (which are sent as custom metrics), about the App Service environment where the application is hosted.
514514
* `AzureInstanceMetadataTelemetryModule`: Collects heartbeats (which are sent as custom metrics), about the Azure VM environment where the application is hosted.
515515
* `EventCounterCollectionModule`: Collects [EventCounters](eventcounters.md). This module is a new feature and is available in SDK version 2.8.0 and later.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ For the template-based ASP.NET MVC app from this article, the file that you need
363363

364364
## Live metrics
365365

366-
[Live metrics](./live-stream.md) can be used to quickly verify if Application Insights monitoring is configured correctly. It might take a few minutes for telemetry to appear in the portal and analytics, but the live metrics pane shows CPU usage of the running process in near real time. It can also show other telemetry like requests, dependencies, and traces.
366+
[Live metrics](./live-stream.md) can be used to quickly verify if application monitoring with Application Insights is configured correctly. Telemetry can take a few minutes to appear in the Azure portal, but the live metrics pane shows CPU usage of the running process in near real time. It can also show other telemetry like requests, dependencies, and traces.
367367

368368
### Enable live metrics by using code for any .NET application
369369

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.devlang: csharp
1212
Monitor your live, in-production web application by using live metrics (also known as QuickPulse) from [Application Insights](./app-insights-overview.md). You can select and filter metrics and performance counters to watch in real time, without any disturbance to your service. You can also inspect stack traces from sample failed requests and exceptions. Together with [Profiler](./profiler.md) and [Snapshot Debugger](./snapshot-debugger.md), live metrics provide a powerful and noninvasive diagnostic tool for your live website.
1313

1414
> [!NOTE]
15-
> Live metrics only supports TLS 1.2. For more information, see [Troubleshooting](#troubleshooting).
15+
> Live metrics only support TLS 1.2. For more information, see [Troubleshooting](#troubleshooting).
1616
1717
With live metrics, you can:
1818

@@ -112,7 +112,7 @@ If you want to monitor a particular server role instance, you can filter by serv
112112

113113
## Secure the control channel
114114

115-
Live metrics custom filters allow you to control which of your application's telemetry is streamed to the live metrics view in the Azure portal. The filters criteria are sent to the apps that are instrumented with the Application Insights SDK. The filter value could potentially contain sensitive information, such as the customer ID. To keep this value secured and prevent potential disclosure to unauthorized applications, secure the live metrics channel by using [Microsoft Entra authentication](./azure-ad-authentication.md#configure-and-enable-azure-ad-based-authentication).
115+
Live metrics custom filters allow you to control which of your application's telemetry is streamed to the live metrics pane in the Azure portal. The filters criteria are sent to the apps that are instrumented with the Application Insights SDK. The filter value could potentially contain sensitive information, such as the customer ID. To keep this value secured and prevent potential disclosure to unauthorized applications, secure the live metrics channel by using [Microsoft Entra authentication](./azure-ad-authentication.md#configure-and-enable-azure-ad-based-authentication).
116116

117117
> [!NOTE]
118118
> On September 30, 2025, API keys used to stream live metrics telemetry into Application Insights will be retired. After that date, applications that use API keys won't be able to send live metrics data to your Application Insights resource. Authenticated telemetry ingestion for live metrics streaming to Application Insights will need to be done with [Microsoft Entra authentication for Application Insights](./azure-ad-authentication.md).

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ The following sections list the full telemetry automatically collected by Applic
313313

314314
### Live metrics
315315

316-
[Live metrics](./live-stream.md) can be used to quickly verify if Application Insights monitoring is configured correctly. Although it might take a few minutes before telemetry appears in the portal and analytics, The live metrics pane shows CPU usage of the running process in near real time. It can also show other telemetry like Requests, Dependencies, and Traces.
316+
[Live metrics](./live-stream.md) can be used to quickly verify if application monitoring with Application Insights is configured correctly. Telemetry can take a few minutes to appear in the Azure portal, but the live metrics pane shows CPU usage of the running process in near real time. It can also show other telemetry like requests, dependencies, and traces.
317317

318318
### ILogger logs
319319

@@ -382,7 +382,7 @@ public void ConfigureServices(IServiceCollection services)
382382
// Disables adaptive sampling.
383383
aiOptions.EnableAdaptiveSampling = false;
384384

385-
// Disables live metrics (formerly QuickPulse).
385+
// Disables live metrics (also known as QuickPulse).
386386
aiOptions.EnableQuickPulseMetricStream = false;
387387
services.AddApplicationInsightsTelemetryWorkerService(aiOptions);
388388
}

0 commit comments

Comments
 (0)