Hello All,
I'm new to Solarwinds but have been watching a couple of videos to get myself up to speed.
I was tasked with creating a view that can show the count and tables of host down, hosts up, and total host of some particular systems managed by a particular group in our organization.
I can only count the total numbers of nodes managed in my organization and not the specific group. My humble question is how can i filter/Count the specific group -- or example, Helpdesk -- and not the total numbers of nodes in our organization.
Thank you for your assistance in advance.
Select Count(1) as Countnodes from Orion.nodes where status <>1 Comment: I assume the <> sign means systems that are not up
Select Count(1) as Countnodes from Orion.nodes where status = 1 Comment: For systems that are up
Select Count(1) as CountNodes From Orion Nodes Comment: Total number of nodes