If any changes to discovered servers are made that would change the CI_METRIC_ID (i.e. origin), the CI_METRIC_ID needs to be updated in the S_QOS_DATA table.
If it does not update, you will have a mismatch and the servers will not show data correctly.
How do I update the CI_METRIC_ID column on S_QOS_DATA table after change to the DB?
Due to a mismatch of CI_METRIC_ID's metrics are not showing correcting in OC. How do I have the data_engine reset them?
DX UIM 20.4.* / 23.4.*
Guidance
select distinct c.dev_id,r.address nimbus_address,r.ip robotip,r.domain,
r.hub hubname,s.name robotname,cg.name groupname,s.nimbus_type,
d.source source,d.origin,s.os_type os_major,s.os_name os_minor,s.os_version,
s.os_description,d.ci_metric_id,d.qos,d.target,d.r_table,d.probe,d.table_id,
d.samplevalue value from S_QOS_DATA d
left join CM_CONFIGURATION_ITEM_METRIC m
on m.ci_metric_id=d.ci_metric_id
left join CM_CONFIGURATION_ITEM I on i.ci_id = m.ci_id
left join CM_DEVICE c on c.dev_id = i.dev_id
left join CM_COMPUTER_SYSTEM s on c.cs_id = s.cs_id
left join CM_GROUP_MEMBER cm on c.cs_id = cm.cs_id
left join CM_GROUP cg on cg.grp_id = cm.grp_id
left join CM_NIMBUS_ROBOT r on s.ip = r.ip and r.origin = d.origin
where d.probe = 'cdm'
-- and d.robot = <robot>
-- and d.origin = <origin>