UIM Monitoring audit for a specific source
search cancel

UIM Monitoring audit for a specific source

book

Article ID: 190168

calendar_today

Updated On:

Products

CA Unified Infrastructure Management SaaS (Nimsoft / UIM) DX SaaS DX Unified Infrastructure Management (Nimsoft / UIM)

Issue/Introduction

Is there a way that I can get information on what is being polled on a source and at what rate?

Environment

Release : All

Component : CA UIM

Resolution

The following query can be helpful to get this information:

select 
cs.name, 
sd.qos,
ci.ci_name, 
cb.met_description,
sd.samplerate, 
sd.probe
from cm_configuration_item ci
join cm_device cd on cd.dev_id=ci.dev_id 
join cm_computer_system cs on cs.cs_id=cd.cs_id 
join cm_configuration_item_metric cm on cm.ci_id=ci.ci_id
join cm_configuration_item_metric_definition cb on cm.ci_metric_type=cb.met_type
join s_qos_data sd on sd.ci_metric_id=cm.ci_metric_id
where cs.name like '%test%' order by table_id;

Where 'test' would be changed to the machine that you want the information for.