Need to create a report for components with type of components which are currently enabled for monitoring( example like windows event id, windows service monitor)
Try the below SWQL Query
Just to clarify, that looks like a SQL query and not a SWQL query.
Below as SWQL to the same info:
SELECT C.ComponentName, C.ComponentType, C.status, C.StatusDescription, C.Application.Name AS AppName, C.Application.node.DisplayName AS NodeNameFROM Orion.APM.Component AS CWHERE C.status NOT IN (3, 9, 11) -- Exclude Unmanaged, Not Running, Offline