DX Unified Infrastructure Management

  • 1.  Detect newly added Robots

    Posted Feb 28, 2017 11:54 AM

    Hi All,

     

     How to find when a new robot is added in HUB .

     

    Thanks,



  • 2.  Re: Detect newly added Robots

    Broadcom Employee
    Posted Feb 28, 2017 12:10 PM

    I am sorry I do not think currently there is a way to do this.

    The robot information is stored in the cm_computer_system and cm_nimbus_robot tables neither has

    a created date.

     

    I think you would need to create and Idea to have this added as a new feature.



  • 3.  Re: Detect newly added Robots

    Posted Mar 01, 2017 02:41 AM

    Thanks all for your suggestions !

    This is a basic features must be rolled by the product itself ,I don't know if i create an idea too ,it will be reviewed if there is more voting.



  • 4.  Re: Detect newly added Robots

    Posted Feb 28, 2017 05:37 PM

    cm_computer_system has the "create_time" column , try running a query using this column as reference. That might help 



  • 5.  Re: Detect newly added Robots

    Broadcom Employee
    Posted Feb 28, 2017 06:03 PM

    Try the following query.

     

    select cm.create_time,cm.origin,cm.name,cm.ip from CM_COMPUTER_SYSTEM cm left join CM_DEVICE de on cm.cs_id = de.cs_id where de.probe_name = 'controller' order by create_time desc;



  • 6.  Re: Detect newly added Robots

    Broadcom Employee
    Posted Feb 28, 2017 08:27 PM

    Note.

    CM_COMPUTER_SYSTEM.[create_time] might help but it is important to understand this is not reliable source since it might be re-populated once "Discovery Reset" has been performed.

     

    Regards,

    Yu Ishitani