diff --git a/pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/storage.tsx b/pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/storage.tsx index 7062a582fc75..7d2df69290b5 100644 --- a/pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/storage.tsx +++ b/pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/storage.tsx @@ -466,5 +466,55 @@ export default function (props: GraphDashboardProps) { )} , + + + The number of bytes written to the store's disk per second{" "} + {tooltipSelection} (as reported by the OS). + + } + showMetricsInTooltip={true} + > + + {storeMetrics( + { + name: "cr.store.storage.disk.write.bytes", + nonNegativeRate: true, + }, + nodeIDs, + storeIDsByNodeID, + )} + + , + + + The number of bytes read from the store's disk per second{" "} + {tooltipSelection} (as reported by the OS). + + } + showMetricsInTooltip={true} + > + + {storeMetrics( + { + name: "cr.store.storage.disk.read.bytes", + nonNegativeRate: true, + }, + nodeIDs, + storeIDsByNodeID, + )} + + , ]; }