-
Notifications
You must be signed in to change notification settings - Fork 542
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[xfs,filesys,ext] Get list of devices by lsblk -lpo NAME,FSTYPE.
It can happen the FS of interest is not actually mounted and then we have no info about it. This is revorks of how we should get list of devices. It adds a new __init__.py fuction to decrease code duplication get_dev_by_fstype(self,fstype). It is using lsblk instead of /proc/mounts. Last change is separation of Ext2/3/4 info into separate module from filesys. Signed-off-by: Lukas Herbolt <[email protected]>
- Loading branch information
Showing
4 changed files
with
115 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# 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, IndependentPlugin, PluginOpt | ||
|
||
|
||
class Ext(Plugin, IndependentPlugin): | ||
"""This plugin collects information on mounted Ext2/3/4 filessystems on | ||
the local system. | ||
Users should expect `dumpe2fs -h` or `dumpe2fs` collections by this | ||
plugin for each Ext2/3/4 filesystem that is recognized by lsblk. | ||
""" | ||
|
||
short_desc = 'Ext2/3/4 filesystem' | ||
|
||
plugin_name = 'ext' | ||
profiles = ('storage',) | ||
files = ('/sys/fs/ext4/', '/proc/fs/ext4/', '/proc/fs/jbd2/') | ||
|
||
option_list = [ | ||
PluginOpt('dumpe2fs', default=False, desc='dump filesystem info'), | ||
PluginOpt('frag', default=False, | ||
desc='collect filesystem fragmentation status') | ||
] | ||
|
||
def setup(self): | ||
dumpe2fs_opts = '-h' | ||
if self.get_option('dumpe2fs'): | ||
dumpe2fs_opts = '' | ||
allfs = self.get_devices_by_fstype('ext') | ||
if allfs: | ||
for fs in allfs: | ||
self.add_cmd_output(f"dumpe2fs {dumpe2fs_opts} {fs}", | ||
tags="dumpe2fs_h") | ||
|
||
if self.get_option('frag'): | ||
self.add_cmd_output(f"e2freefrag {fs}", priority=100) | ||
|
||
else: | ||
mounts = '/proc/mounts' | ||
ext_fs_regex = r"^(/dev/\S+).+ext[234]\s+" | ||
for dev in self.do_regex_find_all(ext_fs_regex, mounts): | ||
self.add_cmd_output(f"dumpe2fs {dumpe2fs_opts} {fs}", | ||
tags="dumpe2fs_h") | ||
|
||
if self.get_option('frag'): | ||
self.add_cmd_output(f"e2freefrag {fs}", priority=100) | ||
|
||
self.add_copy_spec(self.files) | ||
|
||
# vim: set et ts=4 sw=4 : |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extra setup here?
Perhaps remove this one, and move these option_list to the one above?