Could you please provide instructions on how to generate the probe configuration report using an SQL query that extracts data from the back end?
UIM 34.4.6
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;