I am trying to extract a list of the configured applications and the details of the components with in those applications.
I can get the application name and component names, but I am having trouble figuring out the table that correlates the component details.
I want to retrieve the URL from HTTP or HTTPS component monitors, service names from service component monitors, and process names from process component monitors.
Can someone tell me what table to get this level of details from?
Here is the basic SWQL query that I have now:
SELECT C.ComponentID, C.ComponentName, A.Name AS ApplicationName, A.Status AS AppStatus, A.StatusDescription AS AppStatusDesc, N.Caption AS NodeName
FROM Orion.APM.Component C
INNER JOIN Orion.APM.Application A ON C.ApplicationID=A.ApplicationID
INNER JOIN Orion.Nodes N ON A.NodeID=N.NodeID
@aLTeReGo