Skip to content

Commit 4e12296

Browse files
Merge pull request #284133 from Rick-Anderson/patch-21
Update opentelemetry-configuration.md
2 parents 73c6904 + 6b2cc54 commit 4e12296

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

articles/azure-monitor/app/opentelemetry-configuration.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,14 @@ This article covers configuration settings for the Azure Monitor OpenTelemetry d
1515

1616
## Connection string
1717

18-
A connection string in Application Insights defines the target location for sending telemetry data, ensuring it reaches the appropriate resource for monitoring and analysis.
19-
18+
A connection string in Application Insights defines the target location for sending telemetry data.
2019
### [ASP.NET Core](#tab/aspnetcore)
2120

2221
Use one of the following three ways to configure the connection string:
2322

24-
- Add `UseAzureMonitor()` to your application startup, in your `program.cs` class.
23+
- Add `UseAzureMonitor()` to your `program.cs` file:
2524

2625
```csharp
27-
// Create a new ASP.NET Core web application builder.
2826
var builder = WebApplication.CreateBuilder(args);
2927

3028
// Add the OpenTelemetry telemetry service to the application.
@@ -33,10 +31,8 @@ Use one of the following three ways to configure the connection string:
3331
options.ConnectionString = "<Your Connection String>";
3432
});
3533

36-
// Build the ASP.NET Core web application.
3734
var app = builder.Build();
3835

39-
// Start the ASP.NET Core web application.
4036
app.Run();
4137
```
4238

articles/azure-monitor/includes/azure-monitor-app-insights-opentelemetry-faqs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ It's a new open-source standard for observability. Learn more at [OpenTelemetry]
1616

1717
### Why is Microsoft Azure Monitor investing in OpenTelemetry?
1818

19-
Microsoft is among the largest contributors to OpenTelemetry.
19+
Microsoft is investing in OpenTelemetry for the following reasons:
2020

21-
The key value propositions of OpenTelemetry are that it's vendor-neutral and provides consistent APIs/SDKs across languages.
22-
23-
Over time, we believe OpenTelemetry will enable Azure Monitor customers to observe applications written in languages beyond our [supported languages](../app/app-insights-overview.md#supported-languages). It also expands the types of data you can collect through a rich set of [instrumentation libraries](https://opentelemetry.io/docs/concepts/components/#instrumentation-libraries). Furthermore, OpenTelemetry Software Development Kits (SDKs) tend to be more performant at scale than their predecessors, the Application Insights SDKs.
24-
25-
Finally, OpenTelemetry aligns with Microsoft's strategy to [embrace open source](https://opensource.microsoft.com/).
21+
- It's vendor-neutral and provides consistent APIs/SDKs across languages.
22+
- Over time, we believe OpenTelemetry will enable Azure Monitor customers to observe applications written in languages beyond our [supported languages](../app/app-insights-overview.md#supported-languages).
23+
- It expands the types of data you can collect through a rich set of [instrumentation libraries](https://opentelemetry.io/docs/concepts/components/#instrumentation-libraries).
24+
- OpenTelemetry Software Development Kits (SDKs) tend to be more performant at scale than their predecessors, the Application Insights SDKs.
25+
- OpenTelemetry aligns with Microsoft's strategy to [embrace open source](https://opensource.microsoft.com/).
2626

2727
### What's the status of OpenTelemetry?
2828

0 commit comments

Comments
 (0)