Skip to content

Commit 90a9356

Browse files
committed
Update tables and TOC
1 parent 88fd58c commit 90a9356

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/runtime/dotnet-metrics.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This document describes semantic conventions for .NET CLR runtime metrics in Ope
1616
- [Metric: `dotnet.gc.collections`](#metric-dotnetgccollections)
1717
- [Metric: `dotnet.gc.objects.size`](#metric-dotnetgcobjectssize)
1818
- [Metric: `dotnet.gc.memory.total_allocated`](#metric-dotnetgcmemorytotal_allocated)
19-
- [Metric: `dotnet.gc.memory.commited`](#metric-dotnetgcmemorycommited)
19+
- [Metric: `dotnet.gc.memory.committed`](#metric-dotnetgcmemorycommitted)
2020
- [Metric: `dotnet.gc.heap.size`](#metric-dotnetgcheapsize)
2121
- [Metric: `dotnet.gc.heap.fragmentation`](#metric-dotnetgcheapfragmentation)
2222
- [Metric: `dotnet.gc.pause.time`](#metric-dotnetgcpausetime)
@@ -174,11 +174,11 @@ This metric is [recommended][MetricRecommended].
174174
<!-- END AUTOGENERATED TEXT -->
175175
<!-- endsemconv -->
176176

177-
### Metric: `dotnet.gc.memory.commited`
177+
### Metric: `dotnet.gc.memory.committed`
178178

179179
This metric is [recommended][MetricRecommended].
180180

181-
<!-- semconv metric.dotnet.gc.memory.commited(metric_table) -->
181+
<!-- semconv metric.dotnet.gc.memory.committed(metric_table) -->
182182
<!-- NOTE: THIS TEXT IS AUTOGENERATED. DO NOT EDIT BY HAND. -->
183183
<!-- see templates/registry/markdown/snippet.md.j2 -->
184184
<!-- prettier-ignore-start -->
@@ -187,7 +187,7 @@ This metric is [recommended][MetricRecommended].
187187

188188
| Name | Instrument Type | Unit (UCUM) | Description | Stability |
189189
| -------- | --------------- | ----------- | -------------- | --------- |
190-
| `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) |
190+
| `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) |
191191

192192

193193
**[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].
199199
<!-- END AUTOGENERATED TEXT -->
200200
<!-- endsemconv -->
201201

202-
<!-- semconv metric.dotnet.gc.memory.commited(full) -->
202+
<!-- semconv metric.dotnet.gc.memory.committed(full) -->
203203
<!-- NOTE: THIS TEXT IS AUTOGENERATED. DO NOT EDIT BY HAND. -->
204204
<!-- see templates/registry/markdown/snippet.md.j2 -->
205205
<!-- prettier-ignore-start -->

model/metrics/dotnet-metrics.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ groups:
3131
unit: "By"
3232
stability: experimental
3333

34-
- id: metric.dotnet.gc.memory.commited
34+
- id: metric.dotnet.gc.memory.committed
3535
type: metric
3636
metric_name: dotnet.gc.memory.committed
3737
brief: >

0 commit comments

Comments
 (0)