Skip to content

Commit d810d4d

Browse files
committed
[report] add enabling packages per plugin to the overview
Add list of packages enabling a plugin into plugins_overview.py . Closes: sosreport#2404 Signed-off-by: Pavel Moravec <[email protected]>
1 parent bf622ae commit d810d4d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

plugins_overview.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# this script generates for each plugin:
2+
# - its name
23
# - URL to upstream code
34
# - list of distros
45
# - list of profiles
6+
# - list of packages that enable the plugin (no other enabling pieces)
57
# - list of paths it collects (add_copy_spec)
68
# - list of paths it forbits to collect (add_forbidden_path)
79
# - list of commands it calls (add_cmd_output)
@@ -74,6 +76,7 @@ def add_all_items(method, dest, wrapopen='\(', wrapclose='\)'):
7476
'sourcecode': 'https://github.com/sosreport/sos/blob/master/sos/report/plugins/%s.py' % plugname,
7577
'distros': [],
7678
'profiles': [],
79+
'packages': [],
7780
'copyspecs': [],
7881
'forbidden': [],
7982
'commands': [],
@@ -84,6 +87,7 @@ def add_all_items(method, dest, wrapopen='\(', wrapclose='\)'):
8487
plugcontent = open(os.path.join(PLUGDIR, plugfile)).read().replace('\n','')
8588
add_all_items("from sos.report.plugins import ", plugs_data[plugname]['distros'], wrapopen='', wrapclose='(class|from|import)')
8689
add_all_items("profiles = ", plugs_data[plugname]['profiles'], wrapopen='')
90+
add_all_items("packages = ", plugs_data[plugname]['packages'], wrapopen='')
8791
add_all_items("add_copy_spec", plugs_data[plugname]['copyspecs'])
8892
add_all_items("add_forbidden_path", plugs_data[plugname]['forbidden'])
8993
add_all_items("add_cmd_output", plugs_data[plugname]['commands'])
@@ -94,7 +98,7 @@ def add_all_items(method, dest, wrapopen='\(', wrapclose='\)'):
9498

9599
# print output; if "csv" is cmdline argument, print in CSV format, else JSON
96100
if (len(sys.argv) > 1) and (sys.argv[1] == "csv"):
97-
print("plugin;url;distros;profiles;copyspecs;forbidden;commands;service_status;journals;env_vars")
101+
print("plugin;url;distros;profiles;packages;copyspecs;forbidden;commands;service_status;journals;env_vars")
98102
for plugname in plugs_data.keys():
99103
plugin = plugs_data[plugname]
100104
# determine max number of lines - usually "max(len(copyspec),len(commands))"

0 commit comments

Comments
 (0)