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
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,17 @@ module openconfig-platform-pipeline-counters {
5 blocks, is to have the abililty to receive all drop counters from
all 5 blocks, for example, with one request.";

oc-ext:openconfig-version "0.5.1";
oc-ext:openconfig-version "0.5.2";
oc-ext:catalog-organization "openconfig";
oc-ext:origin "openconfig";

revision "2026-05-13" {
Comment thread
earies marked this conversation as resolved.
description
"Clarify the trigger semantics shared by pipeline-errors-common
'threshold' and 'active'";
reference "0.5.2";
}

revision "2023-10-08" {
description
"More detail description of pipe-line aggregated drop counters";
Expand Down Expand Up @@ -961,8 +968,10 @@ module openconfig-platform-pipeline-counters {
leaf threshold {
type uint64;
description
"Number of errors before a recovery action is automatically
taken by the system.";
"Error count value at or above which the system automatically
takes the recovery action(s) listed in './action'. The action
is taken when './count' is greater than or equal to this value
(count >= threshold).";
}

leaf-list action {
Expand Down Expand Up @@ -1006,9 +1015,10 @@ module openconfig-platform-pipeline-counters {
type boolean;
default false;
description
"The error is currently in an active state. When the system detects
that the specified threshold is exceeded, this value should be set to
true.";
"The error is currently in an active state. This leaf
transitions to true when './count' becomes greater than or equal
to './threshold' (count >= threshold), and transitions back to
false when './count' is strictly less than './threshold'.";
oc-ext:telemetry-on-change;
}

Expand Down
Loading