DX Unified Infrastructure Management

  • 1.  How to check QoS data collection in the whole environment?

    Posted Oct 10, 2017 05:19 AM

    Hi Guys,

     

    I want to know if there is any way to check the issues in QoS data collection.

     

    Today i checked and found that for some servers, UMP is not showing any performance data. I did some changes in the probes and restarted the agent and problem is solved now. I want to know the way to do this exercise for the whole environment. We cannot check all servers individually.

     

    Regards,

    Ik



  • 2.  Re: How to check QoS data collection in the whole environment?

    Posted Oct 10, 2017 05:42 AM

    1 possibility is to check if your robots published a qos metric "QOS_CPU_USAGE" the last hour:

    ---

    select a.robot, a.origin, MAX(b.sampletime) as last_sampletime
    from CM_NIMBUS_ROBOT a
    inner join V_QOS_CPU_USAGE b
    on a.robot = b.robot
    group by a.origin, a.robot
    having MAX(b.sampletime) <= DATEADD(hh, -1, getdate())
    order by last_sampletime

    ---

    Note: this example assumes that you have the sql_views script executed to create the qos views



  • 3.  Re: How to check QoS data collection in the whole environment?

    Posted Oct 10, 2017 05:56 AM

    Thanks for quick reply Luc,

     

    I want to generate one report to display current threshold cunfigured in the environment.

     

    Regards,

    Ik



  • 4.  Re: How to check QoS data collection in the whole environment?

    Posted Oct 11, 2017 05:50 AM

    Maybe you can try this document which should give the respective thresholds probe wise.

     

    How to create a report of all probe configurations