Hi all,
Although I use zabbix for a few years now, this is my first post on the forums.
First of all I would like to say a big thanks to the developers, as it is a great piece of software and helped me a lot in monitoring all kinds of services.
And I really hope I will be able to attend this year's conference.
------------
You guys have a lot more experience in configuring zabbix than me, so I would like to ask you if it is possible to create a notification when (in and/or out) traffic exceeds 50% of the previous month's average traffic.
I understand that to calculate the total bandwidth on eth0 I can use:
And to calculate the percentage of incoming traffic I can use:
But, is there a way to retrieve the last month's average traffic, compare it with the current month's traffic and then receive a notification?
This is mainly to see if there is a big increase of traffic that would indicate a possible issue.
May be there is a better and easier solution for this, so any help or links to other posts is appreciated.
Thanks in advance.
Kind regards
Although I use zabbix for a few years now, this is my first post on the forums.
First of all I would like to say a big thanks to the developers, as it is a great piece of software and helped me a lot in monitoring all kinds of services.
And I really hope I will be able to attend this year's conference.
------------
You guys have a lot more experience in configuring zabbix than me, so I would like to ask you if it is possible to create a notification when (in and/or out) traffic exceeds 50% of the previous month's average traffic.
I understand that to calculate the total bandwidth on eth0 I can use:
Code:
last("net.if.in[eth0,bytes]")+last("net.if.out[eth0,bytes]")
Code:
100*last("net.if.in[eth0,bytes]")/(last("net.if.in[eth0,bytes]")+last("net.if.out[eth0,bytes]"))
This is mainly to see if there is a big increase of traffic that would indicate a possible issue.
May be there is a better and easier solution for this, so any help or links to other posts is appreciated.
Thanks in advance.
Kind regards
Comment