CDM Probe configuration report
search cancel

CDM Probe configuration report

book

Article ID: 452597

calendar_today

Updated On:

Products

DX Unified Infrastructure Management (Nimsoft / UIM)

Issue/Introduction

Could you please provide instructions on how to generate the probe configuration report using an SQL query that extracts data from the back end?

Environment

UIM 34.4.6

Resolution

Below is the Standard Inventory Query sql

sqlSELECT 
    robot.hub, 
    robot.robot, 
    robot.ip, 
    robot.robot_active, 
    probe.probe_name, 
    probe.pkg_version 
FROM CM_NIMBUS_PROBE probe 
JOIN CM_NIMBUS_ROBOT robot 
    ON probe.robot_id = robot.robot_id 
ORDER BY robot.hub, robot.robot, probe.probe_name;