Skip to content

Commit ea23c17

Browse files
committed
Minor changes
1 parent 3e22ff6 commit ea23c17

File tree

1 file changed

+42
-42
lines changed

1 file changed

+42
-42
lines changed

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

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

1919
Microsoft is investing in OpenTelemetry for the following reasons:
2020

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/).
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

2929
See [OpenTelemetry Status](https://opentelemetry.io/status/).
3030

3131
### What is the Azure Monitor OpenTelemetry Distro?
3232

33-
You can think of it as a thin wrapper that bundles together all the OpenTelemetry components for a first class experience on Azure. This wrapper is also called a [distribution](https://opentelemetry.io/docs/concepts/distributions/) in OpenTelemetry.
33+
You can think of it as a thin wrapper that bundles together all the OpenTelemetry components for a first-class experience on Azure. This wrapper is also called a [distribution](https://opentelemetry.io/docs/concepts/distributions/) in OpenTelemetry.
3434

3535
### Why should I use the Azure Monitor OpenTelemetry Distro?
3636

3737
There are several advantages to using the Azure Monitor OpenTelemetry Distro over native OpenTelemetry from the community:
3838

39-
- Reduces enablement effort
40-
- Supported by Microsoft
41-
- Brings in Azure-specific features such as:
42-
- Sampling compatible with classic Application Insights SDKs
43-
- [Microsoft Entra authentication](../app/azure-ad-authentication.md)
44-
- [Offline Storage and Automatic Retries](../app/opentelemetry-configuration.md#offline-storage-and-automatic-retries)
45-
- [Statsbeat](../app/statsbeat.md)
46-
- [Application Insights Standard Metrics](../app/standard-metrics.md)
47-
- Detect resource metadata to autopopulate [Cloud Role Name](../app/java-standalone-config.md#cloud-role-name) and [Cloud Role Instance](../app/java-standalone-config.md#cloud-role-instance) on various Azure environments
48-
- [Live Metrics](../app/live-stream.md)
39+
* Reduces enablement effort
40+
* Supported by Microsoft
41+
* Brings in Azure-specific features such as:
42+
* Sampling compatible with classic Application Insights SDKs
43+
* [Microsoft Entra authentication](../app/azure-ad-authentication.md)
44+
* [Offline Storage and Automatic Retries](../app/opentelemetry-configuration.md#offline-storage-and-automatic-retries)
45+
* [Statsbeat](../app/statsbeat.md)
46+
* [Application Insights Standard Metrics](../app/standard-metrics.md)
47+
* Detect resource metadata to autopopulate [Cloud Role Name](../app/java-standalone-config.md#cloud-role-name) and [Cloud Role Instance](../app/java-standalone-config.md#cloud-role-instance) on various Azure environments
48+
* [Live Metrics](../app/live-stream.md)
4949

5050
In the spirit of OpenTelemetry, we designed the distro to be open and extensible. For example, you can add:
5151

52-
- An OpenTelemetry Protocol (OTLP) exporter and send to a second destination simultaneously
53-
- Other instrumentation libraries not included in the distro
52+
* An OpenTelemetry Protocol (OTLP) exporter and send to a second destination simultaneously
53+
* Other instrumentation libraries not included in the distro
5454

5555
Because the Distro provides an [OpenTelemetry distribution](https://opentelemetry.io/docs/concepts/distributions/#what-is-a-distribution), the Distro supports anything supported by OpenTelemetry. For example, you can add more telemetry processors, exporters, or instrumentation libraries, if OpenTelemetry supports them.
5656

@@ -82,32 +82,32 @@ For more complex Python telemetry scenarios that require advanced configuration,
8282

8383
The following chart breaks out OpenTelemetry feature support for each language.
8484

85-
|Feature | .NET | Node.js | Python | Java |
86-
|-----------------------------------------------------------------------------------------------------------------------|--------------------|--------------------|--------------------|--------------------|
87-
| [Distributed tracing](../app/distributed-trace-data.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
88-
| [Custom metrics](../app/opentelemetry-add-modify.md#add-custom-metrics) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
89-
| [Standard metrics](../app/standard-metrics.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
90-
| [Fixed-rate sampling](../app/sampling.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
91-
| [Offline storage and automatic retries](../app/opentelemetry-configuration.md#offline-storage-and-automatic-retries) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
92-
| [Exception reporting](../app/asp-net-exceptions.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
93-
| [Logs collection](../app/asp-net-trace-logs.md) | :white_check_mark: | :warning: | :white_check_mark: | :white_check_mark: |
94-
| [Custom Events](../app/usage.md#track-user-interactions-with-custom-events) | :warning: | :warning: | :warning: | :white_check_mark: |
95-
| [Microsoft Entra authentication](../app/azure-ad-authentication.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
96-
| [Live metrics](../app/live-stream.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
97-
| [Live Metrics Filtering](../app/live-stream.md#select-and-filter-your-metrics) | :white_check_mark: | :x: | :x: | :x: |
98-
| Detect Resource Context for VM/VMSS and App Service | :white_check_mark: | :x: | :white_check_mark: | :white_check_mark: |
99-
| Detect Resource Context for Azure Kubernetes Service (AKS) and Functions | :x: | :x: | :x: | :white_check_mark: |
100-
| Availability Testing Events generated using the Track Availability API | :x: | :x: | :x: | :white_check_mark: |
101-
| Filter requests, dependencies, logs, and exceptions by anonymous user ID and synthetic source | :x: | :x: | :x: | :white_check_mark: |
102-
| Filter dependencies, logs, and exceptions by operation name | :x: | :x: | :x: | :white_check_mark: |
103-
| [Adaptive sampling](../app/sampling.md#adaptive-sampling) | :x: | :x: | :x: | :white_check_mark: |
104-
| [Profiler](../profiler/profiler-overview.md) | :x: | :x: | :x: | :warning: |
105-
| [Snapshot Debugger](../snapshot-debugger/snapshot-debugger.md) | :x: | :x: | :x: | :x: |
85+
| Feature | .NET | Node.js | Python | Java |
86+
|----------------------------------------------------------------------------------------------------------------------|--------------------|--------------------|--------------------|--------------------|
87+
| [Distributed tracing](../app/distributed-trace-data.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
88+
| [Custom metrics](../app/opentelemetry-add-modify.md#add-custom-metrics) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
89+
| [Standard metrics](../app/standard-metrics.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
90+
| [Fixed-rate sampling](../app/sampling.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
91+
| [Offline storage and automatic retries](../app/opentelemetry-configuration.md#offline-storage-and-automatic-retries) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
92+
| [Exception reporting](../app/asp-net-exceptions.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
93+
| [Logs collection](../app/asp-net-trace-logs.md) | :white_check_mark: | :warning: | :white_check_mark: | :white_check_mark: |
94+
| [Custom Events](../app/usage.md#track-user-interactions-with-custom-events) | :warning: | :warning: | :warning: | :white_check_mark: |
95+
| [Microsoft Entra authentication](../app/azure-ad-authentication.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
96+
| [Live metrics](../app/live-stream.md) | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
97+
| [Live Metrics Filtering](../app/live-stream.md#select-and-filter-your-metrics) | :white_check_mark: | :x: | :x: | :x: |
98+
| Detect Resource Context for VM/VMSS and App Service | :white_check_mark: | :x: | :white_check_mark: | :white_check_mark: |
99+
| Detect Resource Context for Azure Kubernetes Service (AKS) and Functions | :x: | :x: | :x: | :white_check_mark: |
100+
| Availability Testing Events generated using the Track Availability API | :x: | :x: | :x: | :white_check_mark: |
101+
| Filter requests, dependencies, logs, and exceptions by anonymous user ID and synthetic source | :x: | :x: | :x: | :white_check_mark: |
102+
| Filter dependencies, logs, and exceptions by operation name | :x: | :x: | :x: | :white_check_mark: |
103+
| [Adaptive sampling](../app/sampling.md#adaptive-sampling) | :x: | :x: | :x: | :white_check_mark: |
104+
| [Profiler](../profiler/profiler-overview.md) | :x: | :x: | :x: | :warning: |
105+
| [Snapshot Debugger](../snapshot-debugger/snapshot-debugger.md) | :x: | :x: | :x: | :x: |
106106

107107
**Key**
108-
- :white_check_mark: This feature is available to all customers with formal support.
109-
- :warning: This feature is available as a public preview. See [Supplemental terms of use for Microsoft Azure previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
110-
- :x: This feature isn't available or isn't applicable.
108+
* :white_check_mark: This feature is available to all customers with formal support.
109+
* :warning: This feature is available as a public preview. See [Supplemental terms of use for Microsoft Azure previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
110+
* :x: This feature isn't available or isn't applicable.
111111

112112
### Can OpenTelemetry be used for web browsers?
113113

0 commit comments

Comments
 (0)