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 <yaarit@redhat.com>
(cherry picked from commit
24849196bed042a122c98f07fa9889c7184a2265)
r.append('crash')
if self.channel_device:
r.append('device')
+ if self.channel_ident:
+ r.append('ident')
return r
def gather_device_report(self):