DX Unified Infrastructure Management

 View Only

  • 1.  Probe discovery problem

    Posted Aug 22, 2024 02:30 AM
    Edited by Joakim E Aug 22, 2024 04:40 AM

    Hi,

    We're having issues with probe discovery in OC inventory where not all probes are visible for a number of robots. For instance, some robots only show vmware probe in the inventory but are in fact deployed with other probes like cdm, logmon and processes. And some robots only show cdm probe but other probes are deployed as well. Has anybody seen this behaviour? We're on UIM 23.4.1.



  • 2.  RE: Probe discovery problem

    Broadcom Employee
    Posted Aug 22, 2024 08:47 AM

    Hi Joakim,

    The OC inventory screen shows the probe list only if you configure the probe to collect any QOS. Did you create any profile from IM/AC/MCS on the probes (processes or logmon) not appearing in the list. You may cross verify the QOS list on the device on metric views or PRD or SLM. 

    Rgds,

    Rajesh B




  • 3.  RE: Probe discovery problem

    Posted Aug 22, 2024 09:44 AM

    Hi Rajesh!

    Yes, we are getting QOS metrics for the cdm probe, metrics seen in performance report designer. But the cdm probe is not showing in the inventory for some hosts. What could the problem be?




  • 4.  RE: Probe discovery problem

    Broadcom Employee
    Posted Aug 23, 2024 06:29 AM

    Hi Joakim,

    This could be an issue with mismatch of CI_METRIC_ID with that of CI. 

    Could you please verify for one of the device has wrong monitoredby list returning all the QOS records from below query.  Replace <server_name> with actual server name. 

    SELECT DISTINCT d.cs_id, cs.name, qd.probe FROM s_qos_data qd JOIN cm_configuration_item_metric cim ON cim.ci_metric_id = qd.ci_metric_id
    JOIN  cm_configuration_item ci ON ci.ci_id = cim.ci_id
    JOIN  cm_device d on d.dev_id = ci.dev_id
    JOIN CM_COMPUTER_SYSTEM cs ON cs.cs_id = d.cs_id
    WHERE cs.name = '<server_name>'

    If the list doesn't return proper QOS list for the probes, please follow the KB to fix the issue. The step 4.c will help reset the CI_METRIC_ID issue. 

    Rgds,

    Rajesh B




  • 5.  RE: Probe discovery problem

    Posted Aug 26, 2024 02:51 AM
    Edited by Joakim E Aug 26, 2024 03:16 AM

    Thanks Rajesh,

    You're right, it seems like a ci_metric_id mismatch. The query only returns one of the probes installed for the servers in question.

    I'm checking the KB but in step 4.c there is this command "UPDATE S_QOS_DATA SET ci_metric_id = NULL WHERE probe = '<probe name>';". This command will affect all robots with the probe installed? Is that really what we want?

    Regards

    Joakim




  • 6.  RE: Probe discovery problem

    Broadcom Employee
    Posted Aug 26, 2024 03:55 AM

    Hi Jaokim,

    I would suggest to run only on problematic robots. Please apply additional filter including robot condition with problematic list of robots.

    SELECT * FROM S_QOS_DATA WHERE  probe = '<probe name>' and  robot IN ( '{robot1}', '{robot2}' )

    Rgds,

    Rajesh B