From 273c523dc6c5e02a4259df232d71f84567d891be Mon Sep 17 00:00:00 2001 From: Yaarit Hatuka Date: Wed, 17 Feb 2021 22:26:59 +0000 Subject: [PATCH] mgr/telemetry: check if 'ident' channel is active When compiling the telemetry reports we check for active channels. The 'ident' channel check was missing, hence even if users turned this channel on, its content could not be appended to the report. Fixes: https://tracker.ceph.com/issues/49349 Signed-off-by: Yaarit Hatuka (cherry picked from commit 24849196bed042a122c98f07fa9889c7184a2265) --- src/pybind/mgr/telemetry/module.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pybind/mgr/telemetry/module.py b/src/pybind/mgr/telemetry/module.py index bc68e128967..d4fb9930853 100644 --- a/src/pybind/mgr/telemetry/module.py +++ b/src/pybind/mgr/telemetry/module.py @@ -367,6 +367,8 @@ class Module(MgrModule): r.append('crash') if self.channel_device: r.append('device') + if self.channel_ident: + r.append('ident') return r def gather_device_report(self): -- 2.47.3