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

推荐订阅源

D
Docker
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
V
V2EX
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
博客园 - 聂微东
S
SegmentFault 最新的问题
量子位
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页

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 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 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 Write Custom Ceph Manager Modules
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Custom Ceph Manager modules let you extend Ceph's management capabilities with Python code that has full access to cluster state, configuration, and the monitoring framework. This guide covers the complete process from writing to deploying a production-ready module.

Module File Structure

Create a directory under the manager module path:

/usr/share/ceph/mgr/
    mymodule/
        module.py
        requirements.txt   (optional)

Module Skeleton

A complete module template:

from mgr_module import MgrModule, CLIReadCommand, CLIWriteCommand, Option
import threading

class Module(MgrModule):
    MODULE_OPTIONS = [
        Option(
            name="poll_interval",
            type="int",
            default=60,
            desc="Seconds between polls",
            runtime=True
        )
    ]

    COMMANDS = []  # Use decorators instead

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self._running = False
        self.event = threading.Event()

    @CLIReadCommand("mymodule status")
    def cmd_status(self) -> tuple:
        interval = self.get_module_option("poll_interval")
        return 0, f"Running, interval={interval}s", ""

    @CLIWriteCommand("mymodule set-interval")
    def cmd_set_interval(self, seconds: int) -> tuple:
        self.set_module_option("poll_interval", seconds)
        return 0, f"Interval set to {seconds}s", ""

    def serve(self):
        self._running = True
        self.log.info("mymodule started")
        while self._running:
            self._collect_data()
            self.event.wait(timeout=self.get_module_option("poll_interval"))
            self.event.clear()

    def _collect_data(self):
        # Access cluster state
        osd_map = self.get("osd_map")
        num_osds = len(osd_map["osds"])
        self.log.debug(f"Cluster has {num_osds} OSDs")

    def shutdown(self):
        self._running = False
        self.event.set()

Accessing Cluster State

Key methods available in all modules:

# Cluster maps
self.get("osd_map")         # Full OSD map
self.get("mon_map")         # Monitor map
self.get("fs_map")          # File system map

# Configuration
self.get_module_option("poll_interval")
self.set_module_option("poll_interval", 30)

# Pool and OSD stats
self.get_perf_counters()
self.get("pool_stats")

# Execute CLI commands
ret, out, err = self.mon_command({
    "prefix": "osd df",
    "format": "json"
})

Deploying the Module

Copy the module directory to all manager nodes:

sudo cp -r mymodule /usr/share/ceph/mgr/

Enable and verify:

ceph mgr module enable mymodule
ceph mymodule status

Writing Tests

Test the module logic with Python unittest:

from unittest.mock import MagicMock, patch
import unittest

class TestMyModule(unittest.TestCase):
    def setUp(self):
        # Mock the MgrModule parent
        patcher = patch("mgr_module.MgrModule.__init__", return_value=None)
        patcher.start()
        self.addCleanup(patcher.stop)

    def test_collect_data(self):
        from mymodule.module import Module
        mod = Module.__new__(Module)
        mod.log = MagicMock()
        mod.get = MagicMock(return_value={"osds": [{}, {}]})
        mod._collect_data()
        mod.log.debug.assert_called_once()

Summary

Custom Ceph Manager modules are Python classes inheriting from MgrModule that register CLI commands via decorators, run background tasks in serve(), and access cluster state through built-in methods. After copying the module directory to all manager nodes and enabling it, the module's commands are immediately available through the ceph CLI.