Display Broker and Brokerset Information in Orion UI #315
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This update enables Orion to store and display metrics for brokers and brokersets within the Orion interface.
Details
Broker Class
rawBrokerStatus
: Stores raw data from the metrics API call as a map ofString -> Double
. Example:cpu_usage -> 0.22
.brokerStatus
: Contains the keys and values that are displayed in the Orion UI. Both values are strings. Example:"CPU Usage"
and"22%"
.Brokerset Class
rawBrokersetStatus
: Stores raw data after aggregating values across all brokers as a map ofString -> Double
. Example:max_cpu_usage -> 0.22
.brokersetStatus
: Contains the keys and values to be shown in the Orion UI. Both values are strings. Example:"Max CPU Usage Across All Brokers"
and"22%"
.BrokerMetricsSensor Class
rawBrokerStatus
.JavaScript Changes
Testing