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.

Required solarwinds report containing CPU count and processor count on each node

Hi All,

Can anyone help me to include 'processor count' to the below SQL query for preparing Soalrwinds report?

Select N.NodeID, N.Caption, IP_Address,   Status,  COUNT(DISTINCT CPUIndex) As "Number Of CPU"
FROM CPUMultiLoad_Detail CPU WITH(NOLOCK)
JOIN Nodes N ON CPU.NodeID = N.NodeID
GROUP BY
N.NodeID, N.Caption, IP_Address,  Status
Order By
N.Caption, IP_Address,  Status