]> git.proxmox.com Git - ceph.git/blobdiff - ceph/monitoring/ceph-mixin/tests_alerts/test_alerts.yml
import ceph quincy 17.2.4
[ceph.git] / ceph / monitoring / ceph-mixin / tests_alerts / test_alerts.yml
index 680082d8981607003fa3b4ab4efaba18edc49f3e..7b7e7db7301bddc9f0d55e2ca2b56198fb89652c 100644 (file)
@@ -26,10 +26,8 @@ tests:
           type: ceph_default
           severity: critical
         exp_annotations:
-          summary: Cluster is in an ERROR state
-          description: >
-            Ceph in HEALTH_ERROR state for more than 5 minutes.
-            Please check "ceph health detail" for more information.
+          summary: Ceph is in the ERROR state
+          description: The cluster state has been HEALTH_ERROR for more than 5 minutes. Please check 'ceph health detail' for more information.
 
  # health warning
  - interval: 5m
@@ -54,10 +52,8 @@ tests:
           type: ceph_default
           severity: warning
         exp_annotations:
-          summary: Cluster is in a WARNING state
-          description: >
-            Ceph has been in HEALTH_WARN for more than 15 minutes.
-            Please check "ceph health detail" for more information.
+          summary: Ceph is in the WARNING state
+          description: The cluster state has been HEALTH_WARN for more than 15 minutes. Please check 'ceph health detail' for more information.
 
  # 10% OSDs down
  - interval: 1m
@@ -105,11 +101,7 @@ tests:
            severity: critical
          exp_annotations:
            summary: More than 10% of OSDs are down
-           description: |
-             33.33% or 1 of 3 OSDs are down (>= 10%).
-
-             The following OSDs are down:
-               - osd.1 on ceph
+           description: "33.33% or 1 of 3 OSDs are down (>= 10%). The following OSDs are down: - osd.1 on ceph"
 
  # flapping OSD
  - interval: 1s
@@ -166,13 +158,8 @@ tests:
            type: ceph_default
          exp_annotations:
            documentation: https://docs.ceph.com/en/latest/rados/troubleshooting/troubleshooting-osd#flapping-osds
-           summary: Network issues are causing OSD's to flap (mark each other out)
-           description: >
-              OSD osd.0 on ceph was
-              marked down and back up at 20.1 times once a minute for 5 minutes.
-              This could indicate a network issue (latency, packet drop, disruption)
-              on the clusters "cluster network". Check the network environment on the
-              listed host(s).
+           summary: Network issues are causing OSDs to flap (mark each other down)
+           description: "OSD osd.0 on ceph was marked down and back up 20.1 times once a minute for 5 minutes. This may indicate a network issue (latency, packet loss, MTU mismatch) on the cluster network, or the public network if no cluster network is deployed. Check the network stats on the listed host(s)."
 
  # high pg count deviation
  - interval: 1m
@@ -244,10 +231,8 @@ tests:
            severity: warning
            type: ceph_default
          exp_annotations:
-           summary: PG allocations are not balanced across devices
-           description: >
-              OSD osd.1 on ceph deviates
-              by more than 30% from average PG count.
+           summary: PGs are not balanced across OSDs
+           description: "OSD osd.1 on ceph deviates by more than 30% from average PG count."
 
  # pgs inactive
  - interval: 1m
@@ -295,12 +280,8 @@ tests:
            severity: critical
            type: ceph_default
          exp_annotations:
-           summary: One or more Placement Groups are inactive
-           description: >
-              1 PGs have been inactive for more than 5 minutes in pool
-              device_health_metrics.
-              Inactive placement groups aren't able to serve read/write
-              requests.
+           summary: One or more placement groups are inactive
+           description: "1 PGs have been inactive for more than 5 minutes in pool device_health_metrics. Inactive placement groups are not able to serve read/write requests."
 
  #pgs unclean
  - interval: 1m
@@ -351,12 +332,8 @@ tests:
            severity: warning
            type: ceph_default
          exp_annotations:
-           summary: One or more platcment groups are marked unclean
-           description: >
-              1 PGs haven't been clean for more than 15 minutes in pool
-              device_health_metrics.
-              Unclean PGs haven't been able to completely recover from a
-              previous failure.
+           summary: One or more placement groups are marked unclean
+           description: "1 PGs have been unclean for more than 15 minutes in pool device_health_metrics. Unclean PGs have not recovered from a previous failure."
 
  # root volume full
  - interval: 1m
@@ -395,36 +372,41 @@ tests:
            type: ceph_default
          exp_annotations:
            summary: Root filesystem is dangerously full
-           description: >
-             Root volume (OSD and MON store) is dangerously full: 4.811% free.
+           description: "Root volume is dangerously full: 4.811% free."
 
  # network packets dropped
- - interval: 1s
+ - interval: 1m
    input_series:
     - series: 'node_network_receive_drop_total{device="eth0",
       instance="node-exporter",job="node-exporter"}'
-      values: '1+1x500'
+      values: '0+600x10'
     - series: 'node_network_transmit_drop_total{device="eth0",
       instance="node-exporter",job="node-exporter"}'
-      values: '1+1x500'
+      values: '0+600x10'
+    - series: 'node_network_receive_packets_total{device="eth0",
+      instance="node-exporter",job="node-exporter"}'
+      values: '0+750x10'
+    - series: 'node_network_transmit_packets_total{device="eth0",
+      instance="node-exporter",job="node-exporter"}'
+      values: '0+750x10'
    promql_expr_test:
      - expr: |
          (
-           increase(node_network_receive_drop_total{device!="lo"}[1m]) +
-           increase(node_network_transmit_drop_total{device!="lo"}[1m])
+           rate(node_network_receive_drop_total{device!="lo"}[1m]) +
+           rate(node_network_transmit_drop_total{device!="lo"}[1m])
          ) / (
-           increase(node_network_receive_packets_total{device!="lo"}[1m]) +
-           increase(node_network_transmit_packets_total{device!="lo"}[1m])
-         ) >= 0.0001 or (
-           increase(node_network_receive_drop_total{device!="lo"}[1m]) +
-           increase(node_network_transmit_drop_total{device!="lo"}[1m])
+           rate(node_network_receive_packets_total{device!="lo"}[1m]) +
+           rate(node_network_transmit_packets_total{device!="lo"}[1m])
+         ) >= 0.0050000000000000001 and (
+           rate(node_network_receive_drop_total{device!="lo"}[1m]) +
+           rate(node_network_transmit_drop_total{device!="lo"}[1m])
          ) >= 10
 
        eval_time: 5m
        exp_samples:
          - labels: '{device="eth0", instance="node-exporter",
            job="node-exporter"}'
-           value: 1.2E+02
+           value: 8E-1
    alert_rule_test:
      - eval_time: 5m
        alertname: CephNodeNetworkPacketDrops
@@ -437,38 +419,42 @@ tests:
            severity: warning
            type: ceph_default
          exp_annotations:
-           summary: One or more Nics is seeing packet drops
-           description: >
-             Node node-exporter experiences packet drop > 0.01% or >
-             10 packets/s on interface eth0.
+           summary: One or more NICs reports packet drops
+           description: "Node node-exporter experiences packet drop > 0.5% or > 10 packets/s on interface eth0."
 
  # network packets errors
- - interval: 1s
+ - interval: 1m
    input_series:
     - series: 'node_network_receive_errs_total{device="eth0",
       instance="node-exporter",job="node-exporter"}'
-      values: '1+1x500'
+      values: '0+600x10'
     - series: 'node_network_transmit_errs_total{device="eth0",
       instance="node-exporter",job="node-exporter"}'
-      values: '1+1x500'
+      values: '0+600x10'
+    - series: 'node_network_transmit_packets_total{device="eth0",
+      instance="node-exporter",job="node-exporter"}'
+      values: '0+750x10'
+    - series: 'node_network_receive_packets_total{device="eth0",
+      instance="node-exporter",job="node-exporter"}'
+      values: '0+750x10'
    promql_expr_test:
      - expr: |
          (
-           increase(node_network_receive_errs_total{device!="lo"}[1m]) +
-           increase(node_network_transmit_errs_total{device!="lo"}[1m])
+           rate(node_network_receive_errs_total{device!="lo"}[1m]) +
+           rate(node_network_transmit_errs_total{device!="lo"}[1m])
          ) / (
-           increase(node_network_receive_packets_total{device!="lo"}[1m]) +
-           increase(node_network_transmit_packets_total{device!="lo"}[1m])
+           rate(node_network_receive_packets_total{device!="lo"}[1m]) +
+           rate(node_network_transmit_packets_total{device!="lo"}[1m])
          ) >= 0.0001 or (
-           increase(node_network_receive_errs_total{device!="lo"}[1m]) +
-           increase(node_network_transmit_errs_total{device!="lo"}[1m])
+           rate(node_network_receive_errs_total{device!="lo"}[1m]) +
+           rate(node_network_transmit_errs_total{device!="lo"}[1m])
          ) >= 10
 
        eval_time: 5m
        exp_samples:
          - labels: '{device="eth0", instance="node-exporter",
            job="node-exporter"}'
-           value: 1.2E+02
+           value: 8E-01
    alert_rule_test:
      - eval_time: 5m
        alertname: CephNodeNetworkPacketErrors
@@ -480,11 +466,9 @@ tests:
            oid: 1.3.6.1.4.1.50495.1.2.1.8.3
            severity: warning
            type: ceph_default
-         exp_annotations:
-           summary: One or more Nics is seeing packet errors
-           description: >
-             Node node-exporter experiences packet errors > 0.01% or > 10
-             packets/s on interface eth0.
+         exp_annotations: 
+           summary: One or more NICs reports packet errors
+           description: "Node node-exporter experiences packet errors > 0.01% or > 10 packets/s on interface eth0."
 
 # Node Storage disk space filling up
  - interval: 1m
@@ -523,11 +507,8 @@ tests:
            mountpoint: /rootfs
            nodename: node-1.unittests.com
          exp_annotations:
-           summary: Host filesystem freespace is getting low
-           description: >
-             Mountpoint /rootfs on node-1.unittests.com
-             will be full in less than 5 days assuming the average fill-up
-             rate of the past 48 hours.
+           summary: Host filesystem free space is getting low
+           description: "Mountpoint /rootfs on node-1.unittests.com will be full in less than 5 days based on the 48 hour trailing fill rate."
  # MTU Mismatch
  - interval: 1m
    input_series:
@@ -604,9 +585,7 @@ tests:
            type: ceph_default
          exp_annotations:
            summary: MTU settings across Ceph hosts are inconsistent
-           description: >
-               Node hostname1 has a different MTU size (2200)
-               than the median of devices named eth4.
+           description: "Node hostname1 has a different MTU size (2200) than the median of devices named eth4."
        - exp_labels:
            device: eth4
            instance: node-exporter
@@ -615,9 +594,7 @@ tests:
            type: ceph_default
          exp_annotations:
            summary: MTU settings across Ceph hosts are inconsistent
-           description: >
-               Node node-exporter has a different MTU size (9000)
-               than the median of devices named eth4.
+           description: "Node node-exporter has a different MTU size (9000) than the median of devices named eth4."
 
  # pool full, data series has 6 but using topk(5) so to ensure the
  # results are working as expected
@@ -675,18 +652,7 @@ tests:
          exp_annotations:
            documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pool-full
            summary: Pool is full - writes are blocked
-           description: |
-             A pool has reached it's MAX quota, or the OSDs supporting the pool
-             have reached their FULL threshold. Until this is resolved, writes to
-             the pool will be blocked.
-             Pool Breakdown (top 5)
-               - rbd at 96%
-               - iscsi at 90%
-               - default.rgw.index at 72%
-               - cephfs_data at 32%
-               - default.rgw.log at 19%
-             Either increase the pools quota, or add capacity to the cluster first
-             then increase it's quota (e.g. ceph osd pool set quota <pool_name> max_bytes <bytes>)
+           description: "A pool has reached its MAX quota, or OSDs supporting the pool have reached the FULL threshold. Until this is resolved, writes to the pool will be blocked. Pool Breakdown (top 5) - rbd at 96% - iscsi at 90% - default.rgw.index at 72% - cephfs_data at 32% - default.rgw.log at 19% Increase the pool's quota, or add capacity to the cluster first then increase the pool's quota (e.g. ceph osd pool set quota <pool_name> max_bytes <bytes>)"
  # slow OSD ops
  - interval : 1m
    input_series:
@@ -710,10 +676,8 @@ tests:
            type: ceph_default
          exp_annotations:
            documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#slow-ops
-           summary: MON/OSD operations are slow to complete
-           description: >
-             1 OSD requests are taking too long to process
-             (osd_op_complaint_time exceeded)
+           summary: OSD operations are slow to complete
+           description: "1 OSD requests are taking too long to process (osd_op_complaint_time exceeded)"
 
 # CEPHADM orchestrator alert triggers
  - interval: 30s
@@ -739,11 +703,7 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.11.2
         exp_annotations:
           summary: Ceph version upgrade has failed
-          description: >
-            The cephadm cluster upgrade process has failed. The cluster remains in
-            an undetermined state.
-
-            Please review the cephadm logs, to understand the nature of the issue
+          description: "The cephadm cluster upgrade process has failed. The cluster remains in an undetermined state. Please review the cephadm logs, to understand the nature of the issue"
  - interval: 30s
    input_series:
     - series: 'ceph_health_detail{name="CEPHADM_FAILED_DAEMON"}'
@@ -767,10 +727,7 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.11.1
         exp_annotations:
           summary: A ceph daemon manged by cephadm is down
-          description: >
-            A daemon managed by cephadm is no longer active. Determine, which
-            daemon is down with 'ceph health detail'. you may start daemons with
-            the 'ceph orch daemon start <daemon_id>'
+          description: "A daemon managed by cephadm is no longer active. Determine, which daemon is down with 'ceph health detail'. you may start daemons with the 'ceph orch daemon start <daemon_id>'"
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="CEPHADM_PAUSED"}'
@@ -794,10 +751,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephadm/operations#cephadm-paused
           summary: Orchestration tasks via cephadm are PAUSED
-          description: >
-            Cluster management has been paused manually. This will prevent the
-            orchestrator from service management and reconciliation. If this is
-            not intentional, resume cephadm operations with 'ceph orch resume'
+          description: "Cluster management has been paused manually. This will prevent the orchestrator from service management and reconciliation. If this is not intentional, resume cephadm operations with 'ceph orch resume'"
 # MDS
  - interval: 1m
    input_series:
@@ -822,13 +776,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.5.1
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages#cephfs-health-messages
-          summary: Ceph filesystem is damaged.
-          description: >
-            The filesystems metadata has been corrupted. Data access
-            may be blocked.
-
-            Either analyse the output from the mds daemon admin socket, or
-            escalate to support
+          summary: CephFS filesystem is damaged.
+          description: "Filesystem metadata has been corrupted. Data may be inaccessible. Analyze metrics from the MDS daemon admin socket, or escalate to support."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="MDS_HEALTH_READ_ONLY"}'
@@ -852,13 +801,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.5.2
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages#cephfs-health-messages
-          summary: Ceph filesystem in read only mode, due to write error(s)
-          description: >
-            The filesystem has switched to READ ONLY due to an unexpected
-            write error, when writing to the metadata pool
-
-            Either analyse the output from the mds daemon admin socket, or
-            escalate to support
+          summary: CephFS filesystem in read only mode due to write error(s)
+          description: "The filesystem has switched to READ ONLY due to an unexpected error when writing to the metadata pool. Either analyze the output from the MDS daemon admin socket, or escalate to support."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="MDS_ALL_DOWN"}'
@@ -882,10 +826,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.5.3
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages/#mds-all-down
-          summary: Ceph filesystem is offline
-          description: >
-            All MDS ranks are unavailable. The ceph daemons providing the metadata
-            for the Ceph filesystem are all down, rendering the filesystem offline.
+          summary: CephFS filesystem is offline
+          description: "All MDS ranks are unavailable. The MDS daemons managing metadata are down, rendering the filesystem offline."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="FS_DEGRADED"}'
@@ -909,11 +851,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.5.4
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages/#fs-degraded
-          summary: Ceph filesystem is degraded
-          description: >
-            One or more metadata daemons (MDS ranks) are failed or in a
-            damaged state. At best the filesystem is partially available,
-            worst case is the filesystem is completely unusable.
+          summary: CephFS filesystem is degraded
+          description: "One or more metadata daemons (MDS ranks) are failed or in a damaged state. At best the filesystem is partially available, at worst the filesystem is completely unusable."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="MDS_INSUFFICIENT_STANDBY"}'
@@ -936,11 +875,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages/#mds-insufficient-standby
-          summary: Ceph filesystem standby daemons too low
-          description: >
-            The minimum number of standby daemons determined by standby_count_wanted
-            is less than the actual number of standby daemons. Adjust the standby count
-            or increase the number of mds daemons within the filesystem.
+          summary: Ceph filesystem standby daemons too few
+          description: "The minimum number of standby daemons required by standby_count_wanted is less than the current number of standby daemons. Adjust the standby count or increase the number of MDS daemons."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="FS_WITH_FAILED_MDS"}'
@@ -964,11 +900,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.5.5
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages/#fs-with-failed-mds
-          summary: Ceph MDS daemon failed, no further standby available
-          description: >
-            An MDS daemon has failed, leaving only one active rank without
-            further standby. Investigate the cause of the failure or add a
-            standby daemon
+          summary: MDS daemon failed, no further standby available
+          description: "An MDS daemon has failed, leaving only one active rank and no available standby. Investigate the cause of the failure or add a standby MDS."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="MDS_UP_LESS_THAN_MAX"}'
@@ -992,10 +925,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/cephfs/health-messages/#mds-up-less-than-max
           summary: Ceph MDS daemon count is lower than configured
-          description: >
-            The filesystem's "max_mds" setting defined the number of MDS ranks in
-            the filesystem. The current number of active MDS daemons is less than
-            this setting.
+          description: "The filesystem's 'max_mds' setting defines the number of MDS ranks in the filesystem. The current number of active MDS daemons is less than this value."
 # MGR
  - interval: 1m
    input_series:
@@ -1020,16 +950,8 @@ tests:
           type: ceph_default
           oid: 1.3.6.1.4.1.50495.1.2.1.6.2
         exp_annotations:
-          summary: Ceph's mgr/prometheus module is not available
-          description: >
-            The mgr/prometheus module at ceph-mgr:9283 is unreachable. This
-            could mean that the module has been disabled or the mgr itself is down.
-
-            Without the mgr/prometheus module metrics and alerts will no longer
-            function. Open a shell to ceph and use 'ceph -s' to to determine whether the
-            mgr is active. If the mgr is not active, restart it, otherwise you can check
-            the mgr/prometheus module is loaded with 'ceph mgr module ls'  and if it's
-            not listed as enabled, enable it with 'ceph mgr module enable prometheus'
+          summary: The mgr/prometheus module is not available
+          description: "The mgr/prometheus module at ceph-mgr:9283 is unreachable. This could mean that the module has been disabled or the mgr daemon itself is down. Without the mgr/prometheus module metrics and alerts will no longer function. Open a shell to an admin node or toolbox pod and use 'ceph -s' to to determine whether the mgr is active. If the mgr is not active, restart it, otherwise you can determine module status with 'ceph mgr module ls'. If it is not listed as enabled, enable it with 'ceph mgr module enable prometheus'."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="RECENT_MGR_MODULE_CRASH"}'
@@ -1053,11 +975,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.6.1
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#recent-mgr-module-crash
-          summary: A mgr module has recently crashed
-          description: >
-            One or more mgr modules have crashed and are yet to be acknowledged by the administrator. A
-            crashed module may impact functionality within the cluster. Use the 'ceph crash' commands to
-            investigate which module has failed, and archive it to acknowledge the failure.
+          summary: A manager module has recently crashed
+          description: "One or more mgr modules have crashed and have yet to be acknowledged by an administrator. A crashed module may impact functionality within the cluster. Use the 'ceph crash' command to determine which module has failed, and archive it to acknowledge the failure."
 # MON
  - interval: 1m
    input_series:
@@ -1084,12 +1003,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.3.2
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#mon-disk-crit
-          summary: Disk space on at least one monitor is critically low
-          description: |
-            The free space available to a monitor's store is critically low (<5% by default).
-            You should increase the space available to the monitor(s). The
-            default location for the store sits under /var/lib/ceph. Your monitor hosts are;
-              - ceph-mon-a
+          summary: Filesystem space on at least one monitor is critically low
+          description: "The free space available to a monitor's store is critically low. You should increase the space available to the monitor(s). The default directory is /var/lib/ceph/mon-*/data/store.db on traditional deployments, and /var/lib/rook/mon-*/data/store.db on the mon pod's worker node for Rook. Look for old, rotated versions of *.log and MANIFEST*. Do NOT touch any *.sst files. Also check any other directories under /var/lib/rook and other directories on the same filesystem, often /var/log and /var/tmp are culprits. Your monitor hosts are; - ceph-mon-a"
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="MON_DISK_LOW"}'
@@ -1114,12 +1029,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#mon-disk-low
-          summary: Disk space on at least one monitor is approaching full
-          description: |
-            The space available to a monitor's store is approaching full (>70% is the default).
-            You should increase the space available to the monitor store. The
-            default location for the store sits under /var/lib/ceph. Your monitor hosts are;
-              - ceph-mon-a
+          summary: Drive space on at least one monitor is approaching full
+          description: "The space available to a monitor's store is approaching full (>70% is the default). You should increase the space available to the monitor(s). The default directory is /var/lib/ceph/mon-*/data/store.db on traditional deployments, and /var/lib/rook/mon-*/data/store.db on the mon pod's worker node for Rook. Look for old, rotated versions of *.log and MANIFEST*.  Do NOT touch any *.sst files. Also check any other directories under /var/lib/rook and other directories on the same filesystem, often /var/log and /var/tmp are culprits. Your monitor hosts are; - ceph-mon-a"
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="MON_CLOCK_SKEW"}'
@@ -1142,14 +1053,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#mon-clock-skew
-          summary: Clock skew across the Monitor hosts detected
-          description: |
-            The ceph monitors rely on a consistent time reference to maintain
-            quorum and cluster consistency. This event indicates that at least
-            one of your mons is not sync'd correctly.
-
-            Review the cluster status with ceph -s. This will show which monitors
-            are affected. Check the time sync status on each monitor host.
+          summary: Clock skew detected among monitors
+          description: "Ceph monitors rely on closely synchronized time to maintain quorum and cluster consistency. This event indicates that the time on at least one mon has drifted too far from the lead mon. Review cluster status with ceph -s. This will show which monitors are affected. Check the time sync status on each monitor host with 'ceph time-sync-status' and the state and peers of your ntpd or chrony daemon."
 
 # Check 3 mons one down, quorum at risk
  - interval: 1m
@@ -1188,12 +1093,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#mon-down
           summary: Monitor quorum is at risk
-          description: |
-            Quorum requires a majority of monitors (x 2) to be active
-            Without quorum the cluster will become inoperable, affecting all connected clients and services.
-
-            The following monitors are down:
-              - mon.c on ceph-mon-3
+          description: "Quorum requires a majority of monitors (x 2) to be active. Without quorum the cluster will become inoperable, affecting all services and connected clients. The following monitors are down: - mon.c on ceph-mon-3"
 # check 5 mons, 1 down - warning only
  - interval: 1m
    input_series:
@@ -1234,13 +1134,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#mon-down
-          summary: One of more ceph monitors are down
-          description: |
-            You have 1 monitor down.
-            Quorum is still intact, but the loss of further monitors will make your cluster inoperable.
-
-            The following monitors are down:
-              - mon.e on ceph-mon-5
+          summary: One or more monitors down
+          description: "You have 1 monitor down. Quorum is still intact, but the loss of an additional monitor will make your cluster inoperable.  The following monitors are down:   - mon.e on ceph-mon-5\n"
 # Device Health
  - interval: 1m
    input_series:
@@ -1264,14 +1159,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#id2
-          summary: Device(s) have been predicted to fail soon
-          description: |
-            The device health module has determined that one or more devices will fail
-            soon. To review the device states use 'ceph device ls'. To show a specific
-            device use 'ceph device info <dev id>'.
-
-            Mark the OSD as out (so data may migrate to other OSDs in the cluster). Once
-            the osd is empty remove and replace the OSD.
+          summary: Device(s) predicted to fail soon
+          description: "The device health module has determined that one or more devices will fail soon. To review device status use 'ceph device ls'. To show a specific device use 'ceph device info <dev id>'. Mark the OSD out so that data may migrate to other OSDs. Once the OSD has drained, destroy the OSD, replace the device, and redeploy the OSD."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="DEVICE_HEALTH_TOOMANY"}'
@@ -1295,12 +1184,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.4.7
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#device-health-toomany
-          summary: Too many devices have been predicted to fail, unable to resolve
-          description: |
-            The device health module has determined that the number of devices predicted to
-            fail can not be remediated automatically, since it would take too many osd's out of
-            the cluster, impacting performance and potentially availabililty. You should add new
-            OSDs to the cluster to allow data to be relocated to avoid the data integrity issues.
+          summary: Too many devices are predicted to fail, unable to resolve
+          description: "The device health module has determined that devices predicted to fail can not be remediated automatically, since too many OSDs would be removed from the cluster to ensure performance and availabililty. Prevent data integrity issues by adding new OSDs so that data may be relocated."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="DEVICE_HEALTH_IN_USE"}'
@@ -1323,15 +1208,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#device-health-in-use
-          summary: A device failure is predicted, but unable to relocate data
-          description: |
-            The device health module has determined that one or more devices will fail
-            soon, but the normal process of relocating the data on the device to other
-            OSDs in the cluster is blocked.
-
-            Check the the cluster has available freespace. It may be necessary to add
-            more disks to the cluster to allow the data from the failing device to
-            successfully migrate.
+          summary: Device failure is predicted, but unable to relocate data
+          description: "The device health module has determined that one or more devices will fail soon, but the normal process of relocating the data on the device to other OSDs in the cluster is blocked. \nEnsure that the cluster has available free space. It may be necessary to add capacity to the cluster to allow data from the failing device to successfully migrate, or to enable the balancer."
 # OSD
  - interval: 1m
    input_series:
@@ -1360,9 +1238,7 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.4.8
         exp_annotations:
           summary: An OSD host is offline
-          description: |
-            The following OSDs are down:
-            - ceph-osd-1 : osd.0
+          description: "The following OSDs are down: - ceph-osd-1 : osd.0"
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="OSD_SLOW_PING_TIME_FRONT"}'
@@ -1385,9 +1261,7 @@ tests:
           type: ceph_default
         exp_annotations:
           summary: Network issues delaying OSD heartbeats (public network)
-          description: |
-            OSD heartbeats on the cluster's 'public' network (frontend) are running slow. Investigate the network
-            for any latency issues on this subnet. Use 'ceph health detail' to show the affected OSDs.
+          description: "OSD heartbeats on the cluster's 'public' network (frontend) are running slow. Investigate the network for latency or loss issues. Use 'ceph health detail' to show the affected OSDs."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="OSD_SLOW_PING_TIME_BACK"}'
@@ -1410,9 +1284,7 @@ tests:
           type: ceph_default
         exp_annotations:
           summary: Network issues delaying OSD heartbeats (cluster network)
-          description: |
-            OSD heartbeats on the cluster's 'cluster' network (backend) are running slow. Investigate the network
-            for any latency issues on this subnet. Use 'ceph health detail' to show the affected OSDs.
+          description: "OSD heartbeats on the cluster's 'cluster' network (backend) are slow. Investigate the network for latency issues on this subnet. Use 'ceph health detail' to show the affected OSDs."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="BLUESTORE_DISK_SIZE_MISMATCH"}'
@@ -1436,9 +1308,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#bluestore-disk-size-mismatch
           summary: OSD size inconsistency error
-          description: |
-            One or more OSDs have an internal inconsistency between the size of the physical device and it's metadata.
-            This could lead to the OSD(s) crashing in future. You should redeploy the effected OSDs.
+          description: "One or more OSDs have an internal inconsistency between metadata and the size of the device. This could lead to the OSD(s) crashing in future. You should redeploy the affected OSDs."
  - interval: 30s
    input_series:
     - series: 'ceph_health_detail{name="BLUESTORE_SPURIOUS_READ_ERRORS"}'
@@ -1462,9 +1332,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#bluestore-spurious-read-errors
           summary: Device read errors detected
-          description: >
-            An OSD has encountered read errors, but the OSD has recovered by retrying
-            the reads. This may indicate an issue with the Hardware or Kernel.
+          description: "An OSD has encountered read errors, but the OSD has recovered by retrying the reads. This may indicate an issue with hardware or the kernel."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="OSD_DOWN"}'
@@ -1500,12 +1368,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.4.2
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#osd-down
-          summary: An OSD has been marked down/unavailable
-          description: |
-            1 OSD down for over 5mins.
-
-            The following OSD is down:
-              - osd.1 on ceph-osd-2
+          summary: An OSD has been marked down
+          description: "1 OSD down for over 5mins. The following OSD is down: - osd.1 on ceph-osd-2\n"
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="OSD_NEARFULL"}'
@@ -1530,11 +1394,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#osd-nearfull
           summary: OSD(s) running low on free space (NEARFULL)
-          description: |
-            One or more OSDs have reached their NEARFULL threshold
-
-            Use 'ceph health detail' to identify which OSDs have reached this threshold.
-            To resolve, either add capacity to the cluster, or delete unwanted data
+          description: One or more OSDs have reached the NEARFULL threshold. Use 'ceph health detail' and 'ceph osd df' to identify the problem. To resolve, add capacity to the affected OSD's failure domain, restore down/out OSDs, or delete unwanted data.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="OSD_FULL"}'
@@ -1558,12 +1418,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.4.6
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#osd-full
-          summary: OSD(s) is full, writes blocked
-          description: |
-            An OSD has reached it's full threshold. Writes from all pools that share the
-            affected OSD will be blocked.
-
-            To resolve, either add capacity to the cluster, or delete unwanted data
+          summary: OSD full, writes blocked
+          description: An OSD has reached the FULL threshold. Writes to pools that share the affected OSD will be blocked. Use 'ceph health detail' and 'ceph osd df' to identify the problem. To resolve, add capacity to the affected OSD's failure domain, restore down/out OSDs, or delete unwanted data.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="OSD_BACKFILLFULL"}'
@@ -1587,11 +1443,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#osd-backfillfull
           summary: OSD(s) too full for backfill operations
-          description: |
-            An OSD has reached it's BACKFILL FULL threshold. This will prevent rebalance operations
-            completing for some pools. Check the current capacity utilisation with 'ceph df'
-
-            To resolve, either add capacity to the cluster, or delete unwanted data
+          description: "An OSD has reached the BACKFILL FULL threshold. This will prevent rebalance operations from completing. Use 'ceph health detail' and 'ceph osd df' to identify the problem. To resolve, add capacity to the affected OSD's failure domain, restore down/out OSDs, or delete unwanted data."
  - interval: 30s
    input_series:
     - series: 'ceph_health_detail{name="OSD_TOO_MANY_REPAIRS"}'
@@ -1614,10 +1466,8 @@ tests:
           type: ceph_default
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#osd-too-many-repairs
-          summary: OSD has hit a high number of read errors
-          description: |
-            Reads from an OSD have used a secondary PG to return data to the client, indicating
-            a potential failing disk.
+          summary: OSD reports a high number of read errors
+          description: Reads from an OSD have used a secondary PG to return data to the client, indicating a potential failing drive.
 # Pools
    # trigger percent full prediction on pools 1 and 2 only
  - interval: 12h
@@ -1649,10 +1499,8 @@ tests:
           type: ceph_default
           oid: 1.3.6.1.4.1.50495.1.2.1.9.2
         exp_annotations:
-          summary: Pool growth rate may soon exceed it's capacity
-          description: >
-            Pool 'rbd' will be full in less than 5 days
-            assuming the average fill-up rate of the past 48 hours.
+          summary: Pool growth rate may soon exceed capacity
+          description: Pool 'rbd' will be full in less than 5 days assuming the average fill-up rate of the past 48 hours.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="POOL_BACKFILLFULL"}'
@@ -1674,11 +1522,8 @@ tests:
           severity: warning
           type: ceph_default
         exp_annotations:
-          summary: Freespace in a pool is too low for recovery/rebalance
-          description: >
-            A pool is approaching it's near full threshold, which will
-            prevent rebalance operations from completing. You should
-            consider adding more capacity to the pool.
+          summary: Free space in a pool is too low for recovery/backfill
+          description: A pool is approaching the near full threshold, which will prevent recovery/backfill operations from completing. Consider adding more capacity.
 
  - interval: 1m
    input_series:
@@ -1701,17 +1546,8 @@ tests:
           severity: warning
           type: ceph_default
         exp_annotations:
-          summary: One or more Ceph pools are getting full
-          description: |
-            A pool has exceeeded it warning (percent full) threshold, or the OSDs
-            supporting the pool have reached their NEARFULL thresholds. Writes may
-            continue, but you are at risk of the pool going read only if more capacity
-            isn't made available.
-
-            Determine the affected pool with 'ceph df detail', for example looking
-            at QUOTA BYTES and STORED. Either increase the pools quota, or add
-            capacity to the cluster first then increase it's quota
-            (e.g. ceph osd pool set quota <pool_name> max_bytes <bytes>)
+          summary: One or more Ceph pools are nearly full
+          description: "A pool has exceeded the warning (percent full) threshold, or OSDs supporting the pool have reached the NEARFULL threshold. Writes may continue, but you are at risk of the pool going read-only if more capacity isn't made available. Determine the affected pool with 'ceph df detail', looking at QUOTA BYTES and STORED. Increase the pool's quota, or add capacity to the cluster first then increase the pool's quota (e.g. ceph osd pool set quota <pool_name> max_bytes <bytes>). Also ensure that the balancer is active."
 
 # PGs
  - interval: 1m
@@ -1737,14 +1573,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pg-not-scrubbed
           summary: Placement group(s) have not been scrubbed
-          description: |
-            One or more PGs have not been scrubbed recently. The scrub process is a data integrity
-            feature, protectng against bit-rot. It checks that objects and their metadata (size and
-            attributes) match across object replicas. When PGs miss their scrub window, it may
-            indicate the scrub window is too small, or PGs were not in a 'clean' state during the
-            scrub window.
-
-            You can manually initiate a scrub with: ceph pg scrub <pgid>
+          description: "One or more PGs have not been scrubbed recently. Scrubs check metadata integrity, protecting against bit-rot. They check that metadata is consistent across data replicas. When PGs miss their scrub interval, it may indicate that the scrub window is too small, or PGs were not in a 'clean' state during the scrub window. You can manually initiate a scrub with: ceph pg scrub <pgid>"
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="PG_DAMAGED"}'
@@ -1769,13 +1598,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pg-damaged
           summary: Placement group damaged, manual intervention needed
-          description: >
-            During data consistency checks (scrub), at least one PG has been flagged as being
-            damaged or inconsistent.
-
-            Check to see which PG is affected, and attempt a manual repair if necessary. To list
-            problematic placement groups, use 'rados list-inconsistent-pg <pool>'. To repair PGs use
-            the 'ceph pg repair <pg_num>' command.
+          description: During data consistency checks (scrub), at least one PG has been flagged as being damaged or inconsistent. Check to see which PG is affected, and attempt a manual repair if necessary. To list problematic placement groups, use 'rados list-inconsistent-pg <pool>'. To repair PGs use the 'ceph pg repair <pg_num>' command.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="TOO_MANY_PGS"}'
@@ -1799,13 +1622,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks/#too-many-pgs
           summary: Placement groups per OSD is too high
-          description: |
-            The number of placement groups per OSD is too high (exceeds the mon_max_pg_per_osd setting).
-
-            Check that the pg_autoscaler hasn't been disabled for any of the pools, with 'ceph osd pool autoscale-status'
-            and that the profile selected is appropriate. You may also adjust the target_size_ratio of a pool to guide
-            the autoscaler based on the expected relative size of the pool
-            (i.e. 'ceph osd pool set cephfs.cephfs.meta target_size_ratio .1')
+          description: "The number of placement groups per OSD is too high (exceeds the mon_max_pg_per_osd setting).\n Check that the pg_autoscaler has not been disabled for any pools with 'ceph osd pool autoscale-status', and that the profile selected is appropriate. You may also adjust the target_size_ratio of a pool to guide the autoscaler based on the expected relative size of the pool ('ceph osd pool set cephfs.cephfs.meta target_size_ratio .1') or set the pg_autoscaler mode to 'warn' and adjust pg_num appropriately for one or more pools."
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="PG_RECOVERY_FULL"}'
@@ -1829,10 +1646,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.7.5
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pg-recovery-full
-          summary: OSDs are too full for automatic recovery
-          description: >
-            Data redundancy may be reduced, or is at risk, since one or more OSDs are at or above their
-            'full' threshold. Add more capacity to the cluster, or delete unwanted data.
+          summary: OSDs are too full for recovery
+          description: Data redundancy is at risk since one or more OSDs are at or above the 'full' threshold. Add more capacity to the cluster, restore down/out OSDs, or delete unwanted data.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="PG_BACKFILL_FULL"}'
@@ -1856,10 +1671,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.7.6
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pg-backfill-full
-          summary: Backfill operations are blocked, due to lack of freespace
-          description: >
-            Data redundancy may be at risk due to lack of free space within the cluster. One or more OSDs
-            have breached their 'backfillfull' threshold. Add more capacity, or delete unwanted data.
+          summary: Backfill operations are blocked due to lack of free space
+          description: Data redundancy may be at risk due to lack of free space within the cluster. One or more OSDs have reached the 'backfillfull' threshold. Add more capacity, or delete unwanted data.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="PG_AVAILABILITY"}'
@@ -1891,10 +1704,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.7.3
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pg-availability
-          summary: Placement group is unavailable, blocking some I/O
-          description: >
-            Data availability is reduced impacting the clusters ability to service I/O to some data. One or
-            more placement groups (PGs) are in a state that blocks IO.
+          summary: PG is unavailable, blocking I/O
+          description: Data availability is reduced, impacting the cluster's ability to service I/O. One or more placement groups (PGs) are in a state that blocks I/O.
  - interval: 1m
    input_series:
     - series: 'ceph_health_detail{name="PG_NOT_DEEP_SCRUBBED"}'
@@ -1918,14 +1729,7 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#pg-not-deep-scrubbed
           summary: Placement group(s) have not been deep scrubbed
-          description: |
-            One or more PGs have not been deep scrubbed recently. Deep scrub is a data integrity
-            feature, protectng against bit-rot. It compares the contents of objects and their
-            replicas for inconsistency. When PGs miss their deep scrub window, it may indicate
-            that the window is too small or PGs were not in a 'clean' state during the deep-scrub
-            window.
-
-            You can manually initiate a deep scrub with: ceph pg deep-scrub <pgid>
+          description: One or more PGs have not been deep scrubbed recently. Deep scrubs protect against bit-rot. They compare data replicas to ensure consistency. When PGs miss their deep scrub interval, it may indicate that the window is too small or PGs were not in a 'clean' state during the deep-scrub window.
 
 # Prometheus
  - interval: 1m
@@ -1949,12 +1753,7 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.12.1
         exp_annotations:
           summary: The scrape job for Ceph is missing from Prometheus
-          description: |
-            The prometheus job that scrapes from Ceph is no longer defined, this
-            will effectively mean you'll have no metrics or alerts for the cluster.
-
-            Please review the job definitions in the prometheus.yml file of the prometheus
-            instance.
+          description: The prometheus job that scrapes from Ceph is no longer defined, this will effectively mean you'll have no metrics or alerts for the cluster.  Please review the job definitions in the prometheus.yml file of the prometheus instance.
 # RADOS
  - interval: 1m
    input_series:
@@ -1991,11 +1790,8 @@ tests:
           oid: 1.3.6.1.4.1.50495.1.2.1.10.1
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks#object-unfound
-          summary: Object(s) has been marked UNFOUND
-          description: |
-            A version of a RADOS object can not be found, even though all OSDs are up. I/O
-            requests for this object from clients will block (hang). Resolving this issue may
-            require the object to be rolled back to a prior version manually, and manually verified.
+          summary: Object(s) marked UNFOUND
+          description: The latest version of a RADOS object can not be found, even though all OSDs are up. I/O requests for this object from clients will block (hang). Resolving this issue may require the object to be rolled back to a prior version manually, and manually verified.
 # Generic Alerts
  - interval: 1m
    input_series:
@@ -2022,7 +1818,4 @@ tests:
         exp_annotations:
           documentation: https://docs.ceph.com/en/latest/rados/operations/health-checks/#recent-crash
           summary: One or more Ceph daemons have crashed, and are pending acknowledgement
-          description: |
-            One or more daemons have crashed recently, and need to be acknowledged. This notification
-            ensures that software crashes don't go unseen. To acknowledge a crash, use the
-            'ceph crash archive <id>' command.
+          description: One or more daemons have crashed recently, and need to be acknowledged. This notification ensures that software crashes do not go unseen. To acknowledge a crash, use the 'ceph crash archive <id>' command.