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 queue load #174

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions protobuf_definitions/message_formats.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1065,4 +1065,6 @@ message PersistentStorageSettings {
message CPUInfo {
float cpu_load = 1; // CPU load (0..1)
float memory_bus_load = 2; // Memory bus load (0..1)
float main_queue_load = 3; // Main queue load (0..1)
float guestport_queue_load = 4 ; // Guestport queue load (0..1)
}
1 change: 1 addition & 0 deletions protobuf_definitions/telemetry.proto
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ message MultibeamDiscoveryTel {
MultibeamDiscovery discovery = 1; // Discovery data from a multibeam sonar
}

// Information about cpu and memory usage
message CPUInfoTel {
CPUInfo cpu_info = 1;
}
Loading