I have an existing query that looks at application specific bandwidth utilization alerts, I want this to be modified so as to set alerting based on IP address bandwidth utilization on the selected interface. Here is the existing query predefined on Solar Winds
SELECT Interfaces.Uri, Interfaces.DisplayName FROM Orion.NPM.Interfaces AS Interfaces
INNER JOIN
(
SELECT InterfaceID
FROM Orion.Netflow.FlowsByInterface
WHERE
(TimeStamp >= AddMinute(-5, DateTrunc('minute', GetUtcDate())) AND TimeStamp <= AddMinute(-1, DateTrunc('minute', GetUtcDate())))
AND InterfaceID IN (4697)
AND (ApplicationID IN (106235,104310,104312,100351) AND ApplicationID != 0)
GROUP BY InterfaceID
HAVING ((SUM(IngressBytes)*8) / (5*60)) > 50000000
) AS Flows
ON Flows.InterfaceID = Interfaces.InterfaceID
Is it possible to edit this to look at an IP address segment instead of based on application, for bandwidth utilization alerting.