-
Re: Help with creating SolarWinds report.
tony.johnsonOct 16, 2019 6:13 AM (in response to moonstruck)
Hi Tim,
Could you provide more detail here with any screen shots of what you have done so far? Orion does not have a concept of folders so I am reading this as "Groups" You may also find custom properties useful when creating custom groups and reports.
-
Re: Help with creating SolarWinds report.
moonstruck Oct 17, 2019 3:13 PM (in response to tony.johnson)Hi Tony
Yes you are correct. It is a Group that contains a number of sub groups,
which in turn contains servers.
I have managed to create a customer report where by I enumerate the
contents of these sub-groups to get all the servers listed inside. I need
to get all the peak CPU memory and network bandwidth utilisation. This is
what I am working on atm
Will keep you updated.
On Wed, 16 Oct 2019 at 12:13, tony.johnson
-
-
Re: Help with creating SolarWinds report.
christopher.t.jones123Oct 16, 2019 4:14 PM (in response to moonstruck)
1 of 1 people found this helpfulthe quickest way I could think to do this is to just write an SWQL query that selects the information you would like from the ContainMembers table. Something like below should be a good starting point
SELECT ContainerID, MemberPrimaryID, MemberEntityType, Name, Status, MemberUri, MemberAncestorDisplayNames, MemberAncestorDetailsUrls, EntityDisplayName, EntityDisplayNamePlural, FullName, DetailsUrl FROM Orion.ContainerMembers WHERE ContainerID = "the ID of the containers you want to display"
Turn that into a report and build it based off that