Server : nginx/1.18.0 System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64 User : www-data ( 33) PHP Version : 8.0.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/lib/python3/dist-packages/sos/report/plugins/ |
# This file is part of the sos project: https://github.com/sosreport/sos
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# version 2 of the GNU General Public License.
#
# See the LICENSE file in the source distribution for further information.
from sos.report.plugins import Plugin, RedHatPlugin, UbuntuPlugin
import glob
class CephMON(Plugin, RedHatPlugin, UbuntuPlugin):
short_desc = 'CEPH mon'
plugin_name = 'ceph_mon'
profiles = ('storage', 'virt', 'container')
containers = ('ceph-mon.*',)
def check_enabled(self):
return True if glob.glob('/var/lib/ceph/mon/*/*') else False
def setup(self):
self.add_file_tags({
'.*/ceph.conf': 'ceph_conf',
'/var/log/ceph/ceph-mon.*.log': 'ceph_mon_log'
})
self.add_copy_spec([
"/var/log/ceph/ceph-mon*.log",
"/var/lib/ceph/mon/",
"/run/ceph/ceph-mon*"
])
self.add_cmd_output([
# The ceph_mon plugin will collect all the "ceph ..." commands
# which typically require the keyring.
"ceph mon stat",
"ceph quorum_status",
"ceph report",
"ceph-disk list",
"ceph versions",
"ceph features",
"ceph insights",
"ceph crash stat",
"ceph crash ls",
"ceph config log",
"ceph config generate-minimal-conf",
"ceph config-key dump",
"ceph mon_status",
"ceph osd metadata",
"ceph osd erasure-code-profile ls",
"ceph osd crush show-tunables",
"ceph osd crush dump",
"ceph mgr dump",
"ceph mgr metadata",
"ceph mgr module ls",
"ceph mgr services",
"ceph mgr versions"
])
ceph_cmds = [
"mon dump",
"status",
"health detail",
"device ls",
"df",
"df detail",
"fs ls",
"fs dump",
"pg dump",
"pg stat",
"time-sync-status",
"osd tree",
"osd stat",
"osd df tree",
"osd dump",
"osd df",
"osd perf",
"osd blocked-by",
"osd pool ls detail",
"osd pool autoscale-status",
"mds stat",
"osd numa-status"
]
self.add_cmd_output([
"ceph %s --format json-pretty" % s for s in ceph_cmds
], subdir="json_output", tags="insights_ceph_health_detail")
# these can be cleaned up too but leaving them for safety for now
self.add_forbidden_path([
"/etc/ceph/*keyring*",
"/var/lib/ceph/*keyring*",
"/var/lib/ceph/*/*keyring*",
"/var/lib/ceph/*/*/*keyring*",
"/var/lib/ceph/osd",
"/var/lib/ceph/mon",
# Excludes temporary ceph-osd mount location like
# /var/lib/ceph/tmp/mnt.XXXX from sos collection.
"/var/lib/ceph/tmp/*mnt*",
"/etc/ceph/*bindpass*"
])
# If containerized, run commands in containers
try:
cname = self.get_all_containers_by_regex("ceph-mon*")[0][1]
except Exception:
cname = None
self.add_cmd_output(
["ceph %s" % cmd for cmd in ceph_cmds],
container=cname
)
# vim: set et ts=4 sw=4 :