Hi Team,
Need a report on assigned alerts on each application and component i have a query for Application, Could you please help to modify the below query for components?
Application Template:
select ao.AlertID, apm.Name as Application, ac.Name as Alert
from AlertConfigurations ac
join AlertObjects ao on ao.AlertID = ac.AlertID
join APM_Application apm on apm.Uri = ao.EntityUri
where ac.ObjectType like '%Application%' and ac.Enabled like '1'
Order by ac.Name, apm.Name
Thanks,
Srikanth.