Skip to content

Commit

Permalink
Update tables and TOC
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Aug 5, 2024
1 parent 88fd58c commit 90a9356
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/runtime/dotnet-metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -174,11 +174,11 @@ This metric is [recommended][MetricRecommended].
<!-- END AUTOGENERATED TEXT -->
<!-- endsemconv -->

### Metric: `dotnet.gc.memory.commited`
### Metric: `dotnet.gc.memory.committed`

This metric is [recommended][MetricRecommended].

<!-- semconv metric.dotnet.gc.memory.commited(metric_table) -->
<!-- semconv metric.dotnet.gc.memory.committed(metric_table) -->
<!-- NOTE: THIS TEXT IS AUTOGENERATED. DO NOT EDIT BY HAND. -->
<!-- see templates/registry/markdown/snippet.md.j2 -->
<!-- prettier-ignore-start -->
Expand All @@ -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.
Expand All @@ -199,7 +199,7 @@ This metric is [recommended][MetricRecommended].
<!-- END AUTOGENERATED TEXT -->
<!-- endsemconv -->

<!-- semconv metric.dotnet.gc.memory.commited(full) -->
<!-- semconv metric.dotnet.gc.memory.committed(full) -->
<!-- NOTE: THIS TEXT IS AUTOGENERATED. DO NOT EDIT BY HAND. -->
<!-- see templates/registry/markdown/snippet.md.j2 -->
<!-- prettier-ignore-start -->
Expand Down
2 changes: 1 addition & 1 deletion model/metrics/dotnet-metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: >
Expand Down

0 comments on commit 90a9356

Please sign in to comment.