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: 15 additions & 1 deletion release/models/system/openconfig-system.yang
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ module openconfig-system {
Section 4.c of the IETF Trust's Legal Provisions Relating
to IETF Documents (http://trustee.ietf.org/license-info).";

oc-ext:openconfig-version "3.0.0";
oc-ext:openconfig-version "3.1.0";

revision "2026-03-31" {
description
"Added a leaf for available memory.";
reference "3.1.0";
}

revision "2025-07-08" {
description
Expand Down Expand Up @@ -1159,6 +1165,14 @@ module openconfig-system {
description
"Memory that is not used and is available for allocation.";
}

leaf available {
type uint64;
units bytes;
description
"Memory that is available for allocation. This is largely the sum of
free memory + cache & buffer usage";
}
}

grouping system-memory-error-counters {
Expand Down
Loading