Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[vdo] Capture more information about vdo volumes #3717

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion sos/report/plugins/vdo.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,21 @@ def setup(self):
vdos = self.collect_cmd_output('vdo list --all')
for vdo in vdos['output'].splitlines():
self.add_cmd_output(f"vdo status -n {vdo}")
self.add_cmd_output('vdostats --human-readable')
self.add_cmd_output([
'vdostats --human-readable',
'vdostats --verbose',
])
vdo_cols = 'vdo_deduplication,vdo_index_state'
lvm_vdos = self.collect_cmd_output(f"lvs -a -o +{vdo_cols}")
if lvm_vdos['status'] == 0:
for vdo in lvm_vdos['output'].splitlines():
# we can find the pool and pool data maps in the output
# of lvs, in the column Volume type,
# marked as either 'd' or 'D'
if vdo.split()[2].startswith("D"):
vdo_path = f"{vdo.split()[1]}-{vdo.split()[0].strip('[]')}"
self.add_cmd_output(
f"vdodumpconfig /dev/mapper/{vdo_path}"
)

# vim set et ts=4 sw=4 :
Loading