Implemented

Add "CPU & Memory" option to Network Sonar results

I have browsed the feature request and search the web/thwack, but i could not find any information on this. If this is a duplication I am sorry.

We are running SAM 6.2.3. When i do a sonar discovery, then import the nodes, I then have to manually select CPU & Memory from List Resources for each server node we are monitoring. This is a very tedious job. If there was a tick box in the discovery phase, i would tick it. emoticons_happy.png

I was able to create an exception report based on the SQL below, to give me the servers that i needed to select the resources.

"

select distinct(n.caption),a.name,n.TotalMemory

from nodes n

left outer join [AssetInventory_ProcessorView] a

on n.nodeid= a.NodeID

where n.isserver = 1 and TotalMemory < 0

order by n.caption;

"

I have been reading about the discovery profiles, and they sound promising. But i couldn't find any information if CPU & Memory would be able to be included as a default selection.

This would be another update to an already awesome product.

Cheers