Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add storage counters related to errors #1091

Merged
merged 27 commits into from
Sep 24, 2024
Merged
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
26 changes: 25 additions & 1 deletion release/models/system/openconfig-system.yang
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,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 "2.0.0";
oc-ext:openconfig-version "2.1.0";

revision "2024-04-08" {
description
"Add mount-point counter io-errors.";
reference "2.1.0";
}

revision "2023-12-20" {
description
Expand Down Expand Up @@ -372,6 +378,24 @@ module openconfig-system {
description
"The amount of space currently in use on the filesystem.";
}

container counters {
description
"Counters for tracking filesystem errors";
uses system-mount-point-error-counters;
}

}

grouping system-mount-point-error-counters {
description
"Counters for system memory errors.";

leaf io-errors {
type uint64;
dplore marked this conversation as resolved.
Show resolved Hide resolved
description
"Input/Output errors reading and writing to filesystem.";
}
}

grouping system-global-state {
Expand Down
Loading