Skip to content
Open
Changes from 1 commit
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
16 changes: 13 additions & 3 deletions release/models/system/openconfig-procmon.yang
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,15 @@ module openconfig-procmon {
"This module provides data definitions for process health
monitoring of one or more processes running on the system.";

oc-ext:openconfig-version "0.4.0";
oc-ext:openconfig-version "0.5.0";

revision "2026-07-13" {
description
"Change cpu-utilization type from oc-types:percentage to
uint16 to support multi-core systems where CPU utilization
can exceed 100 percent.";
reference "0.5.0";
}

revision "2019-03-15" {
description
Expand Down Expand Up @@ -153,9 +161,11 @@ module openconfig-procmon {
}

leaf cpu-utilization {
type oc-types:percentage;
type uint16;
description
"The percentage of CPU that is being used by the process.";
"The percentage of CPU that is being used by the process.
On multi-core systems, this value may exceed 100 percent,
up to 100 percent per core.";
}
Comment thread
charanjith-anet marked this conversation as resolved.

leaf memory-usage {
Expand Down