Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/core/diagnostics/built-in-metrics-diagnostics.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The instrument is only available on a system running on containers both on Windo
| ---- | --------------- | ----------- | ----------- |
| `container.cpu.limit.utilization` | ObservableGauge | `1` | The CPU consumption of the running containerized application relative to resource limit in range `[0, 1]`. |

Available starting in: .NET 8.8.0.
Available starting in `Microsoft.Extensions.Diagnostics.ResourceMonitoring` 8.8.0.

##### Metric: `container.cpu.request.utilization`

Expand All @@ -97,7 +97,7 @@ The instrument is only available on a system running on containers on Linux.
| ---- | --------------- | ----------- | ----------- |
| `container.cpu.request.utilization` | ObservableGauge | `1` | The CPU consumption of the running containerized application relative to resource request in range `[0, 1]`. |

Available starting in: .NET 8.8.0.
Available starting in `Microsoft.Extensions.Diagnostics.ResourceMonitoring` 8.8.0.

##### Metric: `container.cpu.time`

Expand All @@ -107,7 +107,7 @@ The instrument is only available on a system running on a container either on Wi
| ---- | --------------- | ----------- | ----------- |
| `container.cpu.time` | ObservableCounter | `s` | CPU time used by the container. |

Available starting in: .NET 9.8.0.
Available starting in `Microsoft.Extensions.Diagnostics.ResourceMonitoring` 9.8.0.

##### Metric: `container.memory.limit.utilization`

Expand All @@ -117,7 +117,7 @@ The instrument is only available on a system running on containers both on Windo
| ---- | --------------- | ----------- | ----------- |
| `container.memory.limit.utilization` | ObservableGauge | `1` | The memory consumption of the running containerized application relative to resource limit in range `[0, 1]`. |

Available starting in: .NET 8.8.0.
Available starting in `Microsoft.Extensions.Diagnostics.ResourceMonitoring` 8.8.0.

##### Metric: `container.memory.usage`

Expand All @@ -127,7 +127,7 @@ The instrument is only available on a system running on containers either on Win
| ---- | --------------- | ----------- | ----------- |
| `container.memory.usage` | ObservableUpDownCounter | `By` | Memory usage of all processes in the container measured in bytes. |

Available starting in: .NET 9.8.0.
Available starting in `Microsoft.Extensions.Diagnostics.ResourceMonitoring` 9.8.0.

##### Metric: `process.cpu.utilization`

Expand Down
Loading