From: Paul Cuzner Date: Thu, 12 Jul 2018 23:49:33 +0000 (+1200) Subject: Fix units used for throughput X-Git-Tag: v1.0.2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fheads%2F1.0;p=cephmetrics.git Fix units used for throughput Throughput units were using binary representation, whereas the expected unit is decimal (i.e. MB/s not MiB/s) Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1496186 Signed-off-by: Paul Cuzner (cherry picked from commit 239afda4debc80544112fe98d31af3f692678f57) --- diff --git a/dashboards/current/ceph-pools.json b/dashboards/current/ceph-pools.json index 853590d..89a2a1b 100644 --- a/dashboards/current/ceph-pools.json +++ b/dashboards/current/ceph-pools.json @@ -146,7 +146,7 @@ }, "yaxes": [ { - "format": "bytes", + "format": "decbytes", "label": null, "logBase": 1, "max": null, @@ -220,7 +220,7 @@ }, "yaxes": [ { - "format": "bytes", + "format": "decbytes", "label": null, "logBase": 1, "max": null, @@ -385,7 +385,7 @@ "pattern": "Current", "thresholds": [], "type": "number", - "unit": "bytes" + "unit": "decbytes" }, { "alias": "", @@ -2864,4 +2864,4 @@ "updatedBy": "admin@localhost", "version": 5 } -} \ No newline at end of file +}