Hi,
I am creating a dashboard using swql query. I want if someone click on node down and Custom Properties "server_category" it should redirect me to a filtered list on nodes on manage nodes. Can that be achieved?
SELECT COUNT(1) as TheCount, '/apps/ncm/nodes/status/1' as Link
FROM Orion.Nodes N
WHERE N.CustomProperties.Environment LIKE '%Prod%' and N.CustomProperties.server_category = 'Critical Server' and N.Status = 1
Thanks in advance.