I would like to setup an alerts for certain subnet if BW from that subnet exceeds a certain mbps or gbps. Is this possible?
Thanks
Hi @JJay04 ,
This should be doable, but the alert will always be limited by node. I assume that those subnets will be passing by single node, so it should not be an issue, but I might be wrong. Anyway, here are the steps:
Hope this will work. Let me know if you will want some adjustments.
Thanks for your help! I did not have "Endpoint traffic is over 5 GB in last hour" but had someone send me the template. Testing this out now.
How do I need to adjust the settings if I want it to be 1536MB with in 15min?
You would need to adjust the following parts:Replace: (TimeStamp >= AddMinute(-61, DateTrunc('minute', GetUtcDate()))With: (TimeStamp >= AddMinute(-16, DateTrunc('minute', GetUtcDate()))
Replace: HAVING ((SUM(Bytes)) / (1024 * 1024 * 1024)) > 1With: HAVING ((SUM(Bytes)) / (1024 * 1024) > 1536
That way, the alert will trigger when your IP Address Group will have traffic over 1536 MB in the last 15 minutes
Hello, I read your article and followed the instructions. However, in the "trigger action" section, I want it to display which IP has exceeded the 1GB usage threshold. Is that possible?