diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2020-02-14 17:26:57 +0000 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2020-02-14 17:26:57 +0000 |
commit | aec21db0016ed87e4fd6fdbf760fbfb067324d7a (patch) | |
tree | 9810b6bcd964458dae1adf31542f29a139c55184 | |
parent | edcffea000a2277a705f2b678980e361155ef862 (diff) | |
download | sos-aec21db0016ed87e4fd6fdbf760fbfb067324d7a.tar.gz |
[ebpf] set class docstring
The plugin does not set a class level docstring, causing it to
dump the Plugin base-class documentation into --list-plugins:
ebpf inactive This is the base class for
sosreport plugins. Plugins should subclass this and set the
class variables where applicable.
[...]
Related: #1952
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/plugins/ebpf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/ebpf.py b/sos/plugins/ebpf.py index d5cba96d..f3ddb87d 100644 --- a/sos/plugins/ebpf.py +++ b/sos/plugins/ebpf.py @@ -11,7 +11,8 @@ import json class Ebpf(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): - + """eBPF tool + """ plugin_name = 'ebpf' profiles = ('system', 'kernel', 'network') |