Skip to content
Open
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
19 changes: 18 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,17 @@ module openconfig-system {
description
"Memory that is not used and is available for allocation.";
}

leaf available {
type uint64;
units bytes;
description
"The amount of memory that is available for use.

In addition to the memory reported by free, this leaf also includes
memory used for system caches and buffers that can be
reclaimed by the operating system.";
}
}

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