diff --git a/docs/runtime/dotnet-metrics.md b/docs/runtime/dotnet-metrics.md index ce14782499..45e7b02852 100644 --- a/docs/runtime/dotnet-metrics.md +++ b/docs/runtime/dotnet-metrics.md @@ -16,7 +16,7 @@ This document describes semantic conventions for .NET CLR runtime metrics in Ope - [Metric: `dotnet.gc.collections`](#metric-dotnetgccollections) - [Metric: `dotnet.gc.objects.size`](#metric-dotnetgcobjectssize) - [Metric: `dotnet.gc.memory.total_allocated`](#metric-dotnetgcmemorytotal_allocated) - - [Metric: `dotnet.gc.memory.commited`](#metric-dotnetgcmemorycommited) + - [Metric: `dotnet.gc.memory.committed`](#metric-dotnetgcmemorycommitted) - [Metric: `dotnet.gc.heap.size`](#metric-dotnetgcheapsize) - [Metric: `dotnet.gc.heap.fragmentation`](#metric-dotnetgcheapfragmentation) - [Metric: `dotnet.gc.pause.time`](#metric-dotnetgcpausetime) @@ -174,11 +174,11 @@ This metric is [recommended][MetricRecommended]. -### Metric: `dotnet.gc.memory.commited` +### Metric: `dotnet.gc.memory.committed` This metric is [recommended][MetricRecommended]. - + @@ -187,7 +187,7 @@ This metric is [recommended][MetricRecommended]. | Name | Instrument Type | Unit (UCUM) | Description | Stability | | -------- | --------------- | ----------- | -------------- | --------- | -| `dotnet.gc.memory.commited` | UpDownCounter | `By` | The amount of committed virtual memory for the managed GC heap, as observed during the latest garbage collection. [1] | ![Experimental](https://img.shields.io/badge/-experimental-blue) | +| `dotnet.gc.memory.committed` | UpDownCounter | `By` | The amount of committed virtual memory in use by the .NET GC, as observed during the latest garbage collection. [1] | ![Experimental](https://img.shields.io/badge/-experimental-blue) | **[1]:** This metric reports the same values as calling [`GC.GetGCMemoryInfo().TotalCommittedBytes`](https://learn.microsoft.com/dotnet/api/system.gcmemoryinfo.totalcommittedbytes). Committed virtual memory may be larger than the heap size because it includes both memory for storing existing objects (the heap size) and some extra memory that is ready to handle newly allocated objects in the future. @@ -199,7 +199,7 @@ This metric is [recommended][MetricRecommended]. - + diff --git a/model/metrics/dotnet-metrics.yaml b/model/metrics/dotnet-metrics.yaml index 804ae89e99..1e8d4a5246 100644 --- a/model/metrics/dotnet-metrics.yaml +++ b/model/metrics/dotnet-metrics.yaml @@ -31,7 +31,7 @@ groups: unit: "By" stability: experimental - - id: metric.dotnet.gc.memory.commited + - id: metric.dotnet.gc.memory.committed type: metric metric_name: dotnet.gc.memory.committed brief: >