Hey everyone,
I'm trying to alert on the number of wireless clients across the Orion install. The following SQL returns the count of clients (all access points, all controllers):
SELECT SUM(NPM_NV_WL_APS.ClientsCount) as TotalClients
FROM NPM_NV_WL_APS WHERE AP_Name is not null
What I would like to do is send an alert if this total should fall below 1000 clients, so a HAVING clause such as:
HAVING SUM(NPM_NV_WL_APS.ClientsCount) < 1000
Should do it (and appears to in SSMS).
Any suggestions on getting this working with advanced alerts?
Dave