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

Provide clarification on the field component_name #162

Merged
merged 1 commit into from
Mar 6, 2024
Merged
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
9 changes: 8 additions & 1 deletion acctz/acctz.proto
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,14 @@ message RecordResponse {
// accomplish the request on the system.
repeated string task_ids = 7;

// Name of the component where the accounting record originated from
// Name of the component in a vendor system configuration where the accounting
// record originated from. This helps to indentify the source of the accouting
// record when multiple components can generate them. This is how the
// component is identified in the components hierarchy in the
// openconfig-platform model.
// For reference: /components/component[name="chassis0"]
// Eg: component_name = "linecard0"
// component_name = "chassis0"
string component_name = 8;
}

Expand Down
Loading