From b963b7fbe9a31627f0e5db1209bfe380a0251e89 Mon Sep 17 00:00:00 2001 From: Kiefer Chang Date: Thu, 28 May 2020 14:43:29 +0800 Subject: [PATCH] monitoring: fixing some issues in RBD detail dashboard - Exchange read/write legends in The `I/O Bytes per second` panel. - Rename `I/O Bytes per second` to `Throughput`. - Rename `IOPS Count` to just `IOPS`. - Remove instance name from legends. - Fixes typos: `Averange` -> `Average`. Fixes: https://tracker.ceph.com/issues/45735 Signed-off-by: Kiefer Chang --- .../grafana/dashboards/rbd-details.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/monitoring/grafana/dashboards/rbd-details.json b/monitoring/grafana/dashboards/rbd-details.json index c822e7dffe1..68fffad1ed0 100644 --- a/monitoring/grafana/dashboards/rbd-details.json +++ b/monitoring/grafana/dashboards/rbd-details.json @@ -27,7 +27,7 @@ } ] }, - "description": "Detailed Performance of RBD Images (IOPS/Latency)", + "description": "Detailed Performance of RBD Images (IOPS/Throughput/Latency)", "editable": false, "gnetId": null, "graphTooltip": 0, @@ -77,21 +77,21 @@ "expr": "irate(ceph_rbd_write_ops{pool=\"$Pool\", image=\"$Image\"}[30s])", "format": "time_series", "intervalFactor": 1, - "legendFormat": "Write {{instance}}", + "legendFormat": "Write", "refId": "A" }, { "expr": "irate(ceph_rbd_read_ops{pool=\"$Pool\", image=\"$Image\"}[30s])", "format": "time_series", "intervalFactor": 1, - "legendFormat": "Read {{instance}}", + "legendFormat": "Read", "refId": "B" } ], "thresholds": [], "timeFrom": null, "timeShift": null, - "title": "IOPS Count", + "title": "IOPS", "tooltip": { "shared": true, "sort": 0, @@ -168,21 +168,21 @@ "expr": "irate(ceph_rbd_write_bytes{pool=\"$Pool\", image=\"$Image\"}[30s])", "format": "time_series", "intervalFactor": 1, - "legendFormat": "Read {{instance}}", + "legendFormat": "Write", "refId": "A" }, { "expr": "irate(ceph_rbd_read_bytes{pool=\"$Pool\", image=\"$Image\"}[30s])", "format": "time_series", "intervalFactor": 1, - "legendFormat": "Write {{instance}}", + "legendFormat": "Read", "refId": "B" } ], "thresholds": [], "timeFrom": null, "timeShift": null, - "title": "IO Bytes per Second", + "title": "Throughput", "tooltip": { "shared": true, "sort": 0, @@ -259,21 +259,21 @@ "expr": "irate(ceph_rbd_write_latency_sum{pool=\"$Pool\", image=\"$Image\"}[30s]) / irate(ceph_rbd_write_latency_count{pool=\"$Pool\", image=\"$Image\"}[30s])", "format": "time_series", "intervalFactor": 1, - "legendFormat": "Write Latency Sum", + "legendFormat": "Write", "refId": "A" }, { "expr": "irate(ceph_rbd_read_latency_sum{pool=\"$Pool\", image=\"$Image\"}[30s]) / irate(ceph_rbd_read_latency_count{pool=\"$Pool\", image=\"$Image\"}[30s])", "format": "time_series", "intervalFactor": 1, - "legendFormat": "Read Latency Sum", + "legendFormat": "Read", "refId": "B" } ], "thresholds": [], "timeFrom": null, "timeShift": null, - "title": "Averange Latency", + "title": "Average Latency", "tooltip": { "shared": true, "sort": 0,