Is there a way that I can get information on what is being polled on a source and at what rate?
Release : All
Component : CA UIM
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.