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>
r.append('crash')
if self.channel_device:
r.append('device')
+ if self.channel_ident:
+ r.append('ident')
return r
def gather_device_report(self) -> Dict[str, Dict[str, Dict[str, str]]]: