Skip to content

Commit 1d98bbc

Browse files
committed
Touching up consistency
1 parent 60cceb9 commit 1d98bbc

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/azure-monitor/app/opentelemetry-nodejs-migrate.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Migrating Azure Monitor Application Insights Node.js from Application Insights 2.X SDK to OpenTelemetry
3-
description: This article provides guidance on how to migrate from the Azure Monitor Application Insights Node.js 2.X SDK to OpenTelemetry.
2+
title: Migrating Azure Monitor Application Insights Node.js from Application Insights SDK 2.X to OpenTelemetry
3+
description: This article provides guidance on how to migrate from the Azure Monitor Application Insights Node.js SDK 2.X to OpenTelemetry.
44
ms.topic: conceptual
5-
ms.date: 04/15/2024
5+
ms.date: 04/16/2024
66
ms.devlang: javascript
77
ms.custom: devx-track-js
88
ms.reviewer: mmcc
99
---
1010

11-
# Migrating from ApplicationInsights Version 2.X to Azure Monitor OpenTelemetry-based Node.js
11+
# Migrate from the Node.js Application Insights SDK 2.X to Azure Monitor OpenTelemetry
1212

13-
This guide provides two options to upgrade from the Azure Monitor Application Insights Node.js 2.X SDK to OpenTelemetry.
13+
This guide provides two options to upgrade from the Azure Monitor Application Insights Node.js SDK 2.X to OpenTelemetry.
1414

1515
* **Clean install** the [Node.js Azure Monitor OpenTelemetry Distro](https://github.com/microsoft/opentelemetry-azure-monitor-js).
1616
* Remove dependencies on the Application Insights classic API.
@@ -35,7 +35,7 @@ This guide provides two options to upgrade from the Azure Monitor Application In
3535
npm uninstall applicationinsights
3636
```
3737

38-
3. Remove 2.X SDK implementation from your code.
38+
3. Remove SDK 2.X implementation from your code.
3939

4040
Remove all Application Insights instrumentation from your code. Delete any sections where the Application Insights client is initialized, modified, or called.
4141

@@ -45,7 +45,7 @@ This guide provides two options to upgrade from the Azure Monitor Application In
4545

4646
#### Azure Monitor OpenTelemetry Distro changes and limitations
4747

48-
The APIs from the Application Insights 2.X SDK aren't available in the Azure Monitor OpenTelemetry Distro. You can access these APIs through a nonbreaking upgrade path in the Application Insights 3.X SDK.
48+
The APIs from the Application Insights SDK 2.X aren't available in the Azure Monitor OpenTelemetry Distro. You can access these APIs through a nonbreaking upgrade path in the Application Insights SDK 3.X.
4949
5050
## [Upgrade](#tab/upgrade)
5151
@@ -59,9 +59,9 @@ The APIs from the Application Insights 2.X SDK aren't available in the Azure Mon
5959
6060
3. Test your application.
6161
62-
To avoid using unsupported configuration options in the Application Insights 3.X SDK, see [Unsupported Properties](https://github.com/microsoft/ApplicationInsights-node.js/tree/beta?tab=readme-ov-file#applicationinsights-shim-unsupported-properties).
62+
To avoid using unsupported configuration options in the Application Insights SDK 3.X, see [Unsupported Properties](https://github.com/microsoft/ApplicationInsights-node.js/tree/beta?tab=readme-ov-file#applicationinsights-shim-unsupported-properties).
6363
64-
If the SDK logs warnings about unsupported API usage after a major version bump, and you need the related functionality, continue using the Application Insights 2.X SDK.
64+
If the SDK logs warnings about unsupported API usage after a major version bump, and you need the related functionality, continue using the Application Insights SDK 2.X.
6565
6666
---
6767
@@ -75,17 +75,17 @@ OpenTelemetry JavaScript's monitoring solutions officially support only Node ver
7575

7676
##### Configuration options
7777

78-
The ApplicationInsights SDK version 2.X offers configuration options that aren't available in the Azure Monitor OpenTelemetry Distro or in the major version upgrade to Application Insights 3.X SDK. To find these changes, along with the options we still support, see [SDK configuration documentation](https://github.com/microsoft/ApplicationInsights-node.js/tree/beta?tab=readme-ov-file#applicationinsights-shim-unsupported-properties).
78+
The Application Insights SDK version 2.X offers configuration options that aren't available in the Azure Monitor OpenTelemetry Distro or in the major version upgrade to Application Insights SDK 3.X. To find these changes, along with the options we still support, see [SDK configuration documentation](https://github.com/microsoft/ApplicationInsights-node.js/tree/beta?tab=readme-ov-file#applicationinsights-shim-unsupported-properties).
7979
8080
##### Extended metrics
8181
82-
Extended metrics are supported in the Application Insights 2.X SDK; however, support for these metrics ends in both version 3.X of the ApplicationInsights SDK and the Azure Monitor OpenTelemetry Distro.
82+
Extended metrics are supported in the Application Insights SDK 2.X; however, support for these metrics ends in both version 3.X of the ApplicationInsights SDK and the Azure Monitor OpenTelemetry Distro.
8383
8484
##### Telemetry Processors
8585
86-
While the Azure Monitor OpenTelemetry Distro and Application Insights 3.X SDK don't support TelemetryProcessors, they do allow you to pass span and log record processors. For more information on how, see [Azure Monitor OpenTelemetry Distro project](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/monitor/monitor-opentelemetry#modify-telemetry).
86+
While the Azure Monitor OpenTelemetry Distro and Application Insights SDK 3.X don't support TelemetryProcessors, they do allow you to pass span and log record processors. For more information on how, see [Azure Monitor OpenTelemetry Distro project](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/monitor/monitor-opentelemetry#modify-telemetry).
8787

88-
This example shows the equivalent of creating and applying a telemetry processor that attaches a custom property in the Application Insights 2.X SDK.
88+
This example shows the equivalent of creating and applying a telemetry processor that attaches a custom property in the Application Insights SDK 2.X.
8989

9090
```typescript
9191
const applicationInsights = require("applicationinsights");

0 commit comments

Comments
 (0)