Information regarding UIM Licenses, how to count probes, robots
search cancel

Information regarding UIM Licenses, how to count probes, robots

book

Article ID: 102915

calendar_today

Updated On:

Products

DX Unified Infrastructure Management (Nimsoft / UIM)

Issue/Introduction

Probes can be installed on several different robots: how to get a list of which probes are installed on which robots? 
And what about the licenses? How and where to get info about that?
 

Where info about UIM License(s) can be found? Is there the possibility to get which probes are installed on which robots?

Environment

Release: Any DX UIM version

Component: Usage_metering probe

Resolution

About the license count, in UIM Infrastructure Manager, the Licenses icon gives the possibility to see the licenses as well as their expiration date.
In hub probe there is also the possibility to check the license numbers in use, e.g., 'x of y' being used: open the hub probe on the primary hub, select 'General' tab and verify the content of the 'License Information' section

The usage_metering probe can be used to extract the details of probes used; for more detailed information:

https://techdocs.broadcom.com/us/en/ca-enterprise-software/it-operations-management/ca-unified-infrastructure-management-probes/GA/monitoring/infrastructure-core-components/usage-metering-usage-metering/usage-metering-usage-metering-release-notes.html

 

Regarding the count of domain/hub/robot/probes, a db query could be executed; something like:
-----
SELECT DISTINCT A.domain, A.hub, A.robot, B.probe_name FROM CM_NIMBUS_ROBOT A, CM_NIMBUS_PROBE B WHERE A.robot_id = B.robot_id group by A.domain, A.hub, A.robot, B.probe_name
-----