aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2017-03-27 19:07:14 +0100
committerBryn M. Reeves <bmr@redhat.com>2017-03-27 19:07:14 +0100
commitee8e0093679b801eb8b4169ecd1a7d09414f388e (patch)
tree20c5c52262aa03e8cdb6c2d02baa715e121bd2ae
parentd576f79f451692fee9ea36a2a4aab4422b9a95c7 (diff)
downloadsos-ee8e0093679b801eb8b4169ecd1a7d09414f388e.tar.gz
[gnochhi] fix plugin name to match file
Plugin names must match the filename they are found in: # sosreport -l | grep gnocchi openstack_gnocchi inactive Gnocchi - Metric as a service # sosreport -o openstack_gnocchi sosreport (version 3.3) a non-existing plugin (openstack_gnocchi) was specified in the command line Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/gnocchi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/plugins/gnocchi.py b/sos/plugins/gnocchi.py
index ec392f8e..a29164b8 100644
--- a/sos/plugins/gnocchi.py
+++ b/sos/plugins/gnocchi.py
@@ -20,7 +20,7 @@ from sos.plugins import Plugin, RedHatPlugin
class GnocchiPlugin(Plugin, RedHatPlugin):
"""Gnocchi - Metric as a service"""
- plugin_name = "openstack_gnocchi"
+ plugin_name = "gnocchi"
profiles = ('openstack', 'openstack_controller')