Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ui: fixes clock offset rendering on multi-store nodes
Previously, the clock offset metric was retrieved on a "per-store" basis for each node which did not match its storage model in the tsdb which is node-based. This would cause incorrect data to be displayed in the Runtime dashboard's "Clock Offset" graph when a node contained multiple stores. We would use `store_id`s to query when we should have been asking for `node_id`s in the `sources` list in the query. This change modifies the Clock Offset metric component to request metrics by `node_id` instead which correctly renders the "Clock Offset" graph for nodes with multiple stores. Resolves #69652 Release note (ui change): fix bug where Clock Offset graph rendered incorrectly on nodes with multiple stores.
- Loading branch information