This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

How To Generate Report Based On Node Without CPU Resources monitored using WMI

Hi,

Is there is any way to generate report showing nodes that being polled using wmi that does not have cpu & memory resources monitored.

thanks,emoticons_confused.png

  • Hi

    there are three ways I would do this:

    • Create a report where filter is:
      • polling method = WMI
      • CPUload = -2

    pastedImage_16.png

    NOTE: solarWinds assigns thev alue of -2 to any device where CPU can't be polled (either permissions issues or CPU not selected on list resources). The problem with this method is that if, by any chance, the device had CPU selected on list resource at some point in the past, the CPU load value will display the last value polled, therefore I would not recommend this method.

    • Create a report using SQL query:
      • select * from nodes where objectsubtype  = 'WMI' and nodeid not in (select nodeid from cpuload)

    pastedImage_18.png

    Note: This way shows you any device that is monitored using WMI but there are no CPUload metrics, either because CPU is not selected on list resources, or because there are other type of issues not allowing use to get that info (credentials mainly)

    • Create a report ussing SQL query:
      • select * from nodes

                   where objectsubtype = 'WMI'

                   and nodeid not in(select netobjectid from pollers where pollertype like '%cpu%' )

    pastedImage_17.png

    NOTE: this way we display devices monitored using WMI where CPU has not been selected using list resources.

    My recommendation would be use the second way to get the information, it is not exactly what you asked for, but i think it will give you the information you really need.

    Raul Gonzalez

    Prosperon - UK SolarWinds Partners

    Installation | Consultancy | Training | Licenses

    facebook_icon.jpglinkedin.pngblogger.pngtwitter-icon.jpg