Skip to content

Commit

Permalink
[microceph][ubuntu] Collect mgr data
Browse files Browse the repository at this point in the history
Signed-off-by: Nikhil Kshirsagar <[email protected]>
  • Loading branch information
nkshirsagar committed Oct 11, 2023
1 parent 9c66ef3 commit 37f48b2
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 47 deletions.
110 changes: 74 additions & 36 deletions sos/report/plugins/ceph_mgr.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,12 @@ class CephMGR(Plugin, RedHatPlugin, UbuntuPlugin):

plugin_name = 'ceph_mgr'
profiles = ('storage', 'virt', 'container', 'ceph')
files = ('/var/lib/ceph/mgr/*', '/var/lib/ceph/*/mgr*')
files = ('/var/lib/ceph/mgr/*', '/var/lib/ceph/*/mgr*',
'/var/snap/microceph/common/data/mgr/*')
containers = ('ceph-(.*-)?mgr.*',)

def setup(self):

self.add_file_tags({
'/var/log/ceph/(.*/)?ceph-mgr.*.log': 'ceph_mgr_log',
})

self.add_forbidden_path([
"/etc/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*",
])

self.add_copy_spec([
"/var/log/ceph/**/ceph-mgr*.log",
"/var/lib/ceph/**/mgr*",
"/var/lib/ceph/**/bootstrap-mgr/",
"/run/ceph/**/ceph-mgr*",
])
microceph_pkg = self.policy.package_manager.pkg_by_name('microceph')

# more commands to be added later
ceph_mgr_cmds = ([
Expand All @@ -73,16 +53,26 @@ def setup(self):
"orch ps",
"orch status --detail",
"orch upgrade status",
"log last cephadm"
"log last cephadm",
"mgr dump",
"mgr metadata",
"mgr module ls",
"mgr stat",
"mgr versions"
])

self.add_cmd_output(
[f"ceph {cmd}" for cmd in ceph_mgr_cmds])
# get ceph_cmds again as json for easier automation parsing
self.add_cmd_output(
[f"ceph {cmd} --format json-pretty" for cmd in ceph_mgr_cmds],
subdir="json_output",
)
# if no orchestraor is configured get rid of the orch stuff
orch_needed = self.exec_cmd('ceph orch status')
if orch_needed['status'] == 2 and 'ENOENT' in orch_needed['output']:
ceph_mgr_cmds = ([
"balancer status",
"log last cephadm",
"mgr dump",
"mgr metadata",
"mgr module ls",
"mgr stat",
"mgr versions"
])

cmds = [
"config diff",
Expand All @@ -93,8 +83,6 @@ def setup(self):
"mds_requests",
"mds_sessions",
"objecter_requests",
"mds_requests",
"mds_sessions",
"perf dump",
"perf histogram dump",
"perf histogram schema",
Expand All @@ -103,17 +91,67 @@ def setup(self):
"version"
]

directory = ''
if not microceph_pkg:
directory = '/var/run/ceph'
self.add_file_tags({
'/var/log/ceph/(.*/)?ceph-mgr.*.log': 'ceph_mgr_log',
})

self.add_forbidden_path([
"/etc/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*",
])

self.add_copy_spec([
"/var/log/ceph/**/ceph-mgr*.log",
"/var/lib/ceph/**/mgr*",
"/var/lib/ceph/**/bootstrap-mgr/",
"/run/ceph/**/ceph-mgr*",
])

else:
directory = '/var/snap/microceph'
self.add_file_tags({
'/var/snap/microceph/common/logs/ceph-mgr.*.log':
'ceph_mgr_log',
})

self.add_forbidden_path([
"/var/snap/microceph/common/**/*keyring*",
])

self.add_copy_spec([
"/var/snap/microceph/common/logs/ceph-mgr*.log",
])

self.add_cmd_output(
[f"ceph {cmd}" for cmd in ceph_mgr_cmds])

# get ceph_cmds again as json for easier automation parsing
self.add_cmd_output(
[f"ceph {cmd} --format json-pretty" for cmd in ceph_mgr_cmds],
subdir="json_output",
)

self.add_cmd_output([
f"ceph daemon {m} {cmd}" for m in self.get_socks() for cmd in cmds]
f"ceph daemon {m} {cmd}" for m in self.get_socks(directory)
for cmd in cmds]
)

def get_socks(self):
def get_socks(self, directory):
"""
Find any available admin sockets under /var/run/ceph (or subdirs for
later versions of Ceph) which can be used for ceph daemon commands
"""
ceph_sockets = []
for rdir, dirs, files in os.walk('/var/run/ceph/'):
for rdir, dirs, files in os.walk(directory):
for file in files:
if file.startswith('ceph-mgr') and file.endswith('.asok'):
ceph_sockets.append(self.path_join(rdir, file))
Expand Down
21 changes: 10 additions & 11 deletions sos/report/plugins/ceph_osd.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ class CephOSD(Plugin, RedHatPlugin, UbuntuPlugin):
'/var/snap/microceph/common/data/osd/*')

def setup(self):
directory = ''
microceph_pkg = self.policy.package_manager.pkg_by_name('microceph')
cmds = [
# will work pre quincy
Expand Down Expand Up @@ -70,6 +71,7 @@ def setup(self):
]

if not microceph_pkg:
directory = '/var/run/ceph'
self.add_file_tags({
"/var/log/ceph/(.*/)?ceph-(.*-)?osd.*.log": 'ceph_osd_log',
})
Expand All @@ -96,12 +98,8 @@ def setup(self):
"ceph-volume lvm list"
])

self.add_cmd_output(
[f"ceph daemon {i} {c}" for i in self.get_socks(
'var/run/ceph') for c in cmds]
)

else:
directory = '/var/snap/microceph'
# Only collect microceph files, don't run any commands
self.add_forbidden_path([
"/var/snap/microceph/common/**/*keyring*",
Expand All @@ -114,18 +112,19 @@ def setup(self):
"/var/snap/microceph/common/logs/*ceph-osd*.log",
])

self.add_cmd_output(
[f"ceph daemon {i} {c}" for i in self.get_socks(
'/var/snap/microceph/') for c in cmds]
)
# common add_cmd_output for ceph and microceph
self.add_cmd_output([
f"ceph daemon {i} {c}" for i in
self.get_socks(directory) for c in cmds]
)

def get_socks(self, folderpath):
def get_socks(self, directory):
"""
Find any available admin sockets under /var/run/ceph (or subdirs for
later versions of Ceph) which can be used for ceph daemon commands
"""
ceph_sockets = []
for rdir, dirs, files in os.walk(folderpath):
for rdir, dirs, files in os.walk(directory):
for file in files:
if file.endswith('.asok') and 'osd' in file:
ceph_sockets.append(self.path_join(rdir, file))
Expand Down

0 comments on commit 37f48b2

Please sign in to comment.