Skip to content

Commit e8834d8

Browse files
author
Timothy Mothra
authored
Update .NET
1 parent 498f2d0 commit e8834d8

File tree

1 file changed

+8
-26
lines changed

1 file changed

+8
-26
lines changed

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

Lines changed: 8 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -394,38 +394,20 @@ export OTEL_TRACES_SAMPLER_ARG=0.1
394394
> [!IMPORTANT]
395395
> See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
396396
397-
<!--
398-
399-
TODO:
397+
This feature is enabled by default.
400398

401-
This feature is/isn't enabled by default.
399+
Users can disable Live Metrics when configuring the Distro.
402400

403-
Functionality and customization are covered in the following configuration sample.
404-
405-
```
406-
Configuration sample
401+
```csharp
402+
builder.Services.AddOpenTelemetry().UseAzureMonitor(options => {
403+
// Disable the Live Metrics feature.
404+
options.EnableLiveMetrics = false;
405+
});
407406
```
408407

409-
-->
410-
411408
#### [.NET](#tab/net)
412409

413-
> [!IMPORTANT]
414-
> See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
415-
416-
<!--
417-
418-
TODO:
419-
420-
This feature is/isn't enabled by default.
421-
422-
Functionality and customization are covered in the following configuration sample.
423-
424-
```
425-
Configuration sample
426-
```
427-
428-
-->
410+
This feature is not available in the Azure Monitor .NET Exporter.
429411

430412
#### [Java](#tab/java)
431413

0 commit comments

Comments
 (0)