Make dashboard disk stat not break on non-Unix machines (note it will not correctly report stat still) (#9962)

Co-authored-by: Max Fitton <max@semprehealth.com>
This commit is contained in:
Max Fitton 2020-08-06 13:00:26 -07:00 committed by GitHub
parent 3f7eb64063
commit fc9fc342cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,9 +15,11 @@ export const ClusterDisk: ClusterFeatureRenderFn = ({ nodes }) => {
let used = 0;
let total = 0;
for (const node of nodes) {
if ("/" in node.disk) {
used += node.disk["/"].used;
total += node.disk["/"].total;
}
}
return (
<UsageBar
percent={(100 * used) / total}