Hi All,
I have created a parent child dependency report with the below SWQL. The output is as expected but The output that it is showing is for all customer that we have in our infra and i want to restrict it to a particular customer. Can anyone help me how can i restrict it to show dependency report of particular customer using custom properties.
SELECT d.Name, p.DisplayName as ParentName, p.StatusLED AS ParentStatus, c.DisplayName AS ChildName, c.StatusLED AS ChildStatus
FROM Orion.Dependencies d
JOIN System.ManagedEntity p ON p.Uri = d.ParentUri
JOIN System.ManagedEntity c ON c.Uri = d.ChildUri