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

推荐订阅源

博客园_首页
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
V
Visual Studio Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
博客园 - 【当耐特】
博客园 - 叶小钗
量子位
博客园 - 聂微东
S
SegmentFault 最新的问题
美团技术团队
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
宝玉的分享
宝玉的分享
小众软件
小众软件
罗磊的独立博客
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow 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 Ceph Cluster Summary Dashboard via CLI 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 Connection Status via Admin Socket
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Overview

Ceph daemons communicate over TCP/IP using an internal messenger protocol. The admin socket exposes commands to inspect active connections, view peer states, and diagnose connectivity issues without using external network tools.

Viewing Connections on an OSD

# Show OSD status including network address info
ceph daemon osd.0 status

# View messenger statistics
ceph daemon osd.0 perf dump | python3 -m json.tool | grep -A5 'AsyncMessenger'

Dumping Messenger Statistics

# Detailed messenger performance stats
ceph daemon osd.0 perf dump | python3 -c "
import sys, json
data = json.load(sys.stdin)
ms = data.get('AsyncMessenger::Worker-0', {})
if ms:
    print('msgr_send_bytes:', ms.get('msgr_send_bytes', 0))
    print('msgr_recv_bytes:', ms.get('msgr_recv_bytes', 0))
    print('msgr_send_messages:', ms.get('msgr_send_messages', 0))
    print('msgr_recv_messages:', ms.get('msgr_recv_messages', 0))
"

Viewing Session State on MON

# View MON connection sessions
ceph daemon mon.$(hostname) sessions

# Show monitor status and quorum info
ceph daemon mon.$(hostname) mon_status

Checking OSD Peer Connections

# List active RADOS watch/notify subscriptions on this OSD
ceph daemon osd.0 dump_watchers

# View operation tracking for connected clients
ceph daemon osd.0 dump_ops_in_flight | python3 -m json.tool

Network Health via Admin Socket

# Check if OSD can see its peers
ceph daemon osd.0 config get cluster_addr
ceph daemon osd.0 config get public_addr

# Verify OSD network interfaces
ceph daemon osd.0 config get cluster_network
ceph daemon osd.0 config get public_network

Connection Debugging Script

#!/bin/bash
# check-osd-connections.sh - verify all OSD connections are healthy
# Uses 'ceph tell' which works remotely via the MON (unlike 'ceph daemon' which is local-only)

ERRORS=0
for osd in $(ceph osd ls); do
    STATUS=$(ceph tell osd.$osd version 2>&1)
    if echo "$STATUS" | python3 -c "import sys,json; print(json.load(sys.stdin)['version'])" 2>/dev/null; then
        VERSION=$(echo "$STATUS" | python3 -c "import sys,json; print(json.load(sys.stdin)['version'])")
        echo "OSD $osd: CONNECTED ($VERSION)"
    else
        echo "OSD $osd: ERROR - $STATUS"
        ((ERRORS++))
    fi
done

echo ""
echo "Total OSDs: $(ceph osd ls | wc -l)"
echo "Connection errors: $ERRORS"

Messenger Connection Counters

# Check for connection errors and resets
for i in 0 1 2; do
    echo "--- AsyncMessenger Worker $i ---"
    ceph daemon osd.0 perf dump | python3 -c "
import sys, json
data = json.load(sys.stdin)
ms = data.get(f'AsyncMessenger::Worker-$i', {})
for k in ['msgr_created_connections', 'msgr_active_connections', 'msgr_send_messages', 'msgr_recv_messages']:
    print(f'  {k}: {ms.get(k, 0)}')
" 2>/dev/null
done

Detecting Connection Flapping

# Watch for connection reset messages in OSD log
journalctl -u ceph-osd@0 --no-pager | grep -E "reset|disconnect|lost connection" | tail -20

# Check messenger error counters
ceph daemon osd.0 perf dump | python3 -m json.tool | grep -i "error\|reset\|lost"

Summary

The Ceph admin socket provides visibility into daemon network connections through the status, sessions, and messenger perf counters. Use these to diagnose network partitions, identify flapping connections, and verify that all cluster members are communicating correctly. Combined with external network tools, admin socket connection inspection gives a complete picture of cluster network health.