Ceph monitoring checklist: the signals every production cluster needs
This checklist defines the signals a production Ceph cluster needs, organized by monitoring maturity. Each level is a superset of the previous one; higher-level signals rely on lower-level context to distinguish real failures from normal churn. The four levels are survival, operational, mature, and expert. You cannot skip levels in practice.
Two caveats apply across all levels. First, ceph_health_status is an umbrella, not a complete picture: HEALTH_OK does not guarantee performance, and HEALTH_WARN covers both expected churn (active recovery) and structural problems (nearfull, noout trap, scrub inconsistency). Drill into ceph_health_detail before treating WARN as noise. Second, per-OSD and per-pool metrics matter more than cluster averages. A cluster at 60% average capacity with one OSD at 85% is closer to trouble than the average suggests.
flowchart TD
L4["Level 4 - expert
BlueStore, RGW, MDS internals"]
L3["Level 3 - mature
flags, outliers, scrub debt, CRUSH"]
L2["Level 2 - operational
PG states, latency, slow ops, recovery"]
L1["Level 1 - survival
health, quorum, OSD up/in, capacity"]
L1 --> L2 --> L3 --> L4Level 1: survival
Minimum viable monitoring. These signals tell you whether the cluster is alive, whether data is at risk, and whether you are about to run out of space.
| Signal | Why it matters | Warning sign |
|---|---|---|
ceph_health_status (0=HEALTH_OK, 1=HEALTH_WARN, 2=HEALTH_ERR) | Top-level cluster state from MON health-check aggregation | Sustained ERR > 120s; sustained WARN > 300s |
ceph_mon_quorum_status (label ceph_daemon) | Without majority quorum the cluster cannot accept map updates | sum() < floor(count()/2) + 1 sustained > 300s |
ceph_osd_up, ceph_osd_in (label ceph_daemon) | Daemon reachable and participating in CRUSH placement | Any OSD transitions to DOWN; DOWN+IN beyond mon_osd_down_out_interval |
ceph_cluster_total_used_raw_bytes / ceph_cluster_total_bytes | Raw utilization against nearfull/backfillfull/full ratios | Crossing nearfull, backfillfull, or full ratio |
ceph_osd_nearfull_ratio, ceph_osd_full_ratio | The actual configured thresholds, not hardcoded 0.85 / 0.95 | Threshold change after config edits |
Gotchas that bite at this level:
- A single OSD can be full while the cluster average is moderate. Watch the maximum, not the mean.
- The quorum formula must compare against the actual MON count, not a hardcoded 3 or 5. For a 5-MON deployment, 2 MONs out is a TICKET, 3 is a PAGE.
ceph_health_status == 0does not mean the cluster is fast. Add latency and PG-state signals in Level 2.
Level 2: operational
Detects degradation before users notice. The signals here distinguish transient recovery from stuck states and surface slow I/O before it cascades into client timeouts.
| Signal | Why it matters | Warning sign |
|---|---|---|
ceph_pg_incomplete (label pool_id) | PG cannot find enough data to serve I/O | sum() > 0 sustained > 300s |
ceph_pg_down (label pool_id) | No replica available; reads and writes fail | sum() > 0 sustained > 300s |
ceph_pg_degraded, ceph_pg_undersized, ceph_pg_stale | Reduced redundancy, lost contact with primary | Sustained > 300s |
ceph_pg_inconsistent (label pool_id) | Scrub found replica divergence | Any non-zero value |
ceph_osd_commit_latency_ms, ceph_osd_apply_latency_ms | WAL/DB and main device performance, per OSD | Outlier > 5x cluster median for the same device class |
ceph_healthcheck_slow_ops | Ops stuck beyond osd_op_complaint_time (default 30s) | > 0 sustained > 120s |
ceph_pool_recovering_bytes_per_sec (label pool_id) | Recovery progress | Zero rate with ceph_pg_degraded > 0 > 600s |
ceph_num_objects_unfound | Cluster has given up locating a copy | > 0 sustained > 300s |
ceph_num_objects_degraded, ceph_num_objects_misplaced | Reduced redundancy, suboptimal CRUSH placement | Degraded > 0 with stalled recovery > 600s |
Gotchas that bite at this level:
- During normal rebalancing,
degradedandrecoveringPGs are expected. Alert on degraded AND stalled recovery, not on degraded alone. - Recovery and client I/O share the same disks. A recovery storm can present as a client-side latency incident. Correlate recovery rate with
ceph_healthcheck_slow_ops. ceph_num_objects_unfoundcan briefly appear during cold start as OSDs rejoin. The 300s sustain helps but is not restart-aware; if your monitoring knows an OSD restarted in the last 10 minutes, gate the alert on that.ceph_osd_commit_latency_msandceph_osd_apply_latency_msare point-in-time snapshots, not histograms. A single bad sample in a 60s scrape window can be misleading.
Level 3: mature
Proactive capacity, performance, and configuration-drift detection.
| Signal | Why it matters | Warning sign |
|---|---|---|
ceph_osd_flag_noout, norecover, nobackfill, noscrub, nodeep_scrub, noup, nodown | Forgotten maintenance flags silently disable recovery, scrubs, or OUT marking | noout set > 24h; norecover/nobackfill set while degraded PGs exist |
| Per-OSD latency outliers vs cluster median | A single dying disk causes tail latency for ~1/N of PGs | Single OSD > 5x median for its device class, sustained |
ceph_pool_quota_bytes, ceph_pool_quota_objects vs ceph_pool_stored, ceph_pool_objects | Pool-level capacity limits | Usage > 80% of quota |
ceph_health_detail{name="MON_CLOCK_SKEW"} | Drift past mon_clock_drift_allowed (default 0.05s) | Active > 60s |
ceph_health_detail{name="PG_NOT_DEEP_SCRUBBED"} | Verification debt; corruption may be accumulating | Active > 24h |
ceph_health_detail{name="OSD_FLAPPING"} | Repeated up/down transitions triggering peering storms | Active |
ceph_health_detail{name="POOL_NO_REDUNDANCY"}, {name="TOO_FEW_OSDS"} | CRUSH placement cannot satisfy configured failure domains | Active |
ceph_osd_blocklist_count | Clients forcibly disconnected (stale CephFS caps, lost RBD locks) | Unexpected non-zero |
A read-only check for the noout trap, runnable on any node with a ceph.conf and admin keyring:
# Check global OSD flags
ceph osd dump | grep flags
Gotchas that bite at this level:
- The noout trap is the most common preventable Ceph outage.
nooutplus any OSD down equals reduced redundancy with no recovery in progress. noscrubandnodeep_scrubset indefinitely is silently catastrophic. HEALTH_OK does not mean data is being verified. TrackPG_NOT_DEEP_SCRUBBEDseparately from cluster health.- Clock skew tightens at 0.05s by default. VMs and bare metal behave very differently here; chrony/NTP must be solid on MON hosts.
- Per-OSD latency outliers require a per-device-class baseline. HDD, SSD, and NVMe expectations are not comparable. Pool OSDs by device class before computing the median.
- Scrub recency matters even when scrubs are completing. Heavy client I/O can starve scrubs indefinitely if
osd_scrub_load_thresholdis too low for your workload.
Level 4: expert
Subsystem-specific observability. Most of these come from ceph-exporter (per-daemon perf counters) rather than the MGR prometheus module. They matter once you are chasing specific failure classes: OMAP storms, BlueStore DB spillover, MDS cache pressure, RGW GC falling behind.
| Signal | Why it matters | Warning sign |
|---|---|---|
BlueStore internals: bluefs slow device usage, RocksDB compaction, cache hit ratio | DB spillover is a hard performance cliff, not gradual | Any nonzero slow_used_bytes; declining cache hit ratio under constant load |
ceph_rgw_req, ceph_rgw_failed_req, ceph_rgw_qlen, ceph_rgw_qactive (label instance_id) | RGW frontend health | Failed rate > 5% sustained > 300s; queue disproportionate to throughput |
ceph_rgw_op_put_obj_lat_sum / _count, ceph_rgw_op_get_obj_lat_sum / _count | RGW PUT/GET latency (compute rate of sum over count) | Sustained rise independent of throughput |
ceph_rgw_gc_retire_object | RGW garbage collection progress | Nearfull AND rate() ~= 0 for > 1h |
ceph_health_detail{name="LARGE_OMAP_OBJECTS"} | RGW bucket index OMAP storm precursor | Active |
ceph_mds_caps, ceph_mds_inodes_with_caps, ceph_mds_server_cap_revoke_eviction | CephFS MDS cache pressure | increase(ceph_mds_server_cap_revoke_eviction[5m]) > 0 |
ceph_mds_reply_latency_sum / _count, ceph_mds_slow_reply | CephFS metadata latency | increase(ceph_mds_slow_reply[5m]) > 0 sustained > 300s |
ceph_health_detail{name="MDS_ALL_DOWN"}, {name="FS_DEGRADED"}, {name="MDS_DAMAGED"} | CephFS availability and metadata integrity | Any active > 120s |
ceph_mds_mem_rss | MDS memory trend toward OOM | Approaching mds_cache_memory_limit |
ceph_cluster_by_class_total_bytes (label device_class) | Per-tier capacity (HDD vs SSD vs NVMe) | One class approaching nearfull while others have headroom |
Gotchas that bite at this level:
- Reef 18.x changed how daemon-level perf counters are exported. The MGR prometheus module’s
exclude_perf_countersdefaults to true, and many BlueStore and OSD latency metrics now come fromceph-exporterinstead. After upgrade, verify both scrape targets before assuming metrics disappeared. - RBD per-image IO statistics are not gathered unless
mgr/prometheus/rbd_stats_poolsis configured. Enablingrbd_stats_pools "*"can impact manager performance on clusters with many RBD images. ceph_rgw_failed_reqcounts aborted requests (typically client disconnects), not HTTP 4xx/5xx. HTTP error breakdown requires RGW access log analysis.- CephFS signals are irrelevant if you do not run CephFS. The same applies to RGW signals. Track only what your deployment uses.
ceph_mds_mem_rssis a leading indicator forMDS_ALL_DOWNvia OOM kill, which is itself a leading indicator for CephFS client disruption. Treat memory pressure on MDS with the same urgency as OSD memory pressure.
Cross-cutting gotchas worth their own alert
These operational errors recur across teams and clusters. Each deserves a dedicated check that combines multiple signals rather than relying on any single metric.
The noout trap. Alert if ceph_osd_flag_noout == 1 for more than 24 hours. noout set for maintenance, then forgotten: OSDs fail without triggering recovery, degraded PGs accumulate silently, and the next failure causes data loss. This is the single most common preventable Ceph outage.
Nearfull dismissal. Alert on both cluster-wide and per-OSD nearfull. A cluster at 85% that loses 10% of OSDs jumps past backfillfull (90%) and can no longer heal itself. Model the failure scenario, not just current state.
HEALTH_WARN as noise. Gate silences on ceph_health_detail, not on the umbrella status. WARN covers routine recovery but also dangerous conditions: nearfull, OSD down with noout set, PG_NOT_DEEP_SCRUBBED overdue, scrub inconsistencies.
Recovery rate blindness. The alert is ceph_pg_degraded > 0 AND ceph_pool_recovering_bytes_per_sec ~= 0, not either signal alone. Degraded PGs with zero recovery is the signature of a stuck cluster.
Scrub inconsistency indifference. Treat any nonzero ceph_pg_inconsistent as urgent. If the consistent replica fails before repair, data is lost.
BlueStore DB spillover. When the dedicated RocksDB DB device fills, metadata spills to the slow data device. Performance collapses but the OSD stays up and raw capacity metrics look fine. Only BlueStore internals (commit latency spiking, bluefs slow device usage going nonzero) reveal this. If you run OSDs with separate DB/WAL devices, Level 4 monitoring is not optional.
How Netdata helps
Netdata’s Ceph collector surfaces these signals at per-second resolution, which matters when correlating brief OSD flaps, recovery stalls, or peering storms that minute-granularity scraping flattens out.
- The cluster overview correlates
ceph_health_statusagainst per-pool PG state counts and recovery rate, so you can distinguish transient WARN from structural WARN without switching contexts. - Per-OSD latency charts make outliers obvious against the cluster median, the practical way to catch a single dying disk before it cascades.
- Anomaly detection flags simultaneous shifts across
ceph_healthcheck_slow_ops, OSD commit latency, and recovery rate, the signature of a recovery storm or BlueStore DB spillover. - The
ceph_osd_flag_*gauges surface forgotten maintenance flags, including the noout trap, before they translate into silently degraded PGs. - Host-level CPU, memory, disk I/O, and network metrics on the same timeline let you correlate RGW OMAP storms or MDS cache pressure with underlying device saturation.






