惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
美团技术团队
Microsoft Security Blog
Microsoft Security Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
G
Google Developers Blog
博客园 - 聂微东
爱范儿
爱范儿
博客园 - 叶小钗
J
Java Code Geeks
月光博客
月光博客
博客园 - Franky
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
小众软件
小众软件
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Vercel News
Vercel News
Y
Y Combinator Blog
量子位

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots How to Use Rook-Ceph with Velero for Kubernetes Backup
How to View Ceph Cluster Summary Dashboard via CLI
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

The ceph status Command

The primary cluster summary command is:

ceph status

Or the shorter alias:

ceph -s

Sample output:

  cluster:
    id:     a7f8c123-4567-89ab-cdef-0123456789ab
    health: HEALTH_OK

  services:
    mon: 3 daemons, quorum mon1,mon2,mon3 (age 2w)
    mgr: mon1(active, since 2w), standbys: mon2
    osd: 24 osds: 24 up (since 3w), 24 in (since 3w)
    rgw: 2 daemons active (2 hosts, 1 zones)

  data:
    volumes: 1/1 healthy
    pools:   8 pools, 256 pgs
    objects: 1.23M objects, 5.8 TiB
    usage:   17 TiB used, 73 TiB / 100 TiB avail
    pgs:     256 active+clean

  io:
    client:   1.2 MiB/s rd, 5.4 MiB/s wr, 120 op/s rd, 85 op/s wr

Continuous Monitoring

Watch the cluster status update every 2 seconds:

watch -n 2 ceph status

Checking Health in Detail

ceph health detail

This explains each warning or error with affected OSD IDs, PGs, or daemon names.

Viewing Active Operations

See all in-progress operations:

ceph ops

Check for slow operations:

ceph dump_historic_slow_ops

Monitoring Throughput and IOPS

If the iostat MGR module is enabled:

ceph iostat

Or use the real-time event stream:

ceph -w

ceph -w streams cluster events (OSD state changes, PG recoveries, etc.) in real time - useful for watching a cluster during maintenance.

Getting the MGR Dashboard URL

If the Ceph Dashboard is enabled via MGR:

ceph mgr services

Output:

{
  "dashboard": "https://mon1.example.com:8443/"
}

Quick Health Checks for Scripting

For use in scripts or CI pipelines, check cluster health programmatically:

# Returns 0 on HEALTH_OK, non-zero on warnings/errors
status=$(ceph health | awk '{print $1}')
printf '%s\n' "$status"
test "$status" = "HEALTH_OK"

Summary

ceph status (or ceph -s) provides a comprehensive one-screen cluster summary including health, services, capacity, PG state, and live I/O rates. Use ceph -w for a streaming event log during maintenance, ceph health detail for specific issue diagnosis, ceph ops and ceph dump_historic_slow_ops to inspect active or slow operations, and ceph mgr services to locate the web dashboard URL.