diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-13 17:17:09 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-22 10:01:01 -0400 |
commit | f558b20e91e8ed41f8897c177e2657d920c86834 (patch) | |
tree | 7bb33513500583b5f51056e46e75154b90a8df30 | |
parent | a6c227d143a9b988e5a3594a1097b338e1a0a871 (diff) | |
download | sos-f558b20e91e8ed41f8897c177e2657d920c86834.tar.gz |
[collector] Properly set desc attribute for parser
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/collector/__init__.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sos/collector/__init__.py b/sos/collector/__init__.py index f2ada569..8705ccd4 100644 --- a/sos/collector/__init__.py +++ b/sos/collector/__init__.py @@ -35,9 +35,16 @@ COLLECTOR_LIB_DIR = '/var/lib/sos-collector' class SoSCollector(SoSComponent): - """Collect an sos report from multiple nodes simultaneously + """Collector is the formerly standalone sos-collector project, brought into + sos natively in 4.0 + + It is meant to collect reports from an arbitrary number of remote nodes, + as well as the localhost, at the same time. These nodes may be either user + defined, defined by some clustering software, or both. """ + desc = 'Collect an sos report from multiple nodes simultaneously' + arg_defaults = { 'alloptions': False, 'all_logs': False, |