Description of problem: [Grafana Ceph Cluster Dashboard] [1] Default configurations Panels are somewhat off in image registry.redhat.io/rhceph/rhceph-6-dashboard-rhel9 (Confirmed in latest tag: 6-77 && 6-75). The Panel: Monitors shows wrong information, When 5/5 mon's are in quorum, the "Out of Quorum" box shows 1. This is due to the division operation as shown below. Which is the JSON model for the Default Ceph Cluster dashboard. ``` -> # cat Ceph_-_Cluster-1695304085550.json | jq '.panels[] | select( .title | contains("Monitors")) | .targets[] | .expr' "sum(ceph_mon_quorum_status)" "count(ceph_mon_quorum_status)" "count(ceph_mon_quorum_status) / sum(ceph_mon_quorum_status)" <<< If 5 out of 5 monitors are up the this op will return 1. Which would show one monitor is out of quorum. ``` Upstream pull request accepted. monitoring: grafana mons out of quorum should be count https://github.com/ceph/ceph/pull/52150/files [2] Health is "OK" but the box is red This is due to the default values in the panel configuration shown below. Value for red should be null and green value should be 80.( correct me if I am wrong here. ``` $ >> cat Ceph_-_Cluster-1695304085550.json | jq '.panels[] | select( .title | contains("OSDs")) | .fieldConfig' { "defaults": { "mappings": [], "thresholds": { "mode": "absolute", "steps": [ { "color": "green", "value": null }, { "color": "red", "value": 80 } ] } }, "overrides": [] } ``` How reproducible: Default out of box for item [1] && for item [2] Additional info:
Nizamudeen, Thank you for the info
*** Bug 2239980 has been marked as a duplicate of this bug. ***
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Red Hat Ceph Storage 6.1 Bug Fix update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2024:0747