Hello
I have the item "Incoming traffic in interface eth0" that suddendly sometimes collect value 999999999999.9999 only one time and next it continues with normal values. This value appears alone among others normal values.
I don't know if is a overflow bug of zabbix or maybe of my operating system.
This issue damage all graphs about current a trends values of this item.
It only happen with real values and I'm not sure if is only with this item.
You could use:
select * from history where value = (select max(value) from history);
In trends:
select * from trends where max_value = (select max(max_value) from trends);
and if appears 999999999999.9999 probably is a bug.
Now I must delete this values from DB to repair my graphs ...
I have the item "Incoming traffic in interface eth0" that suddendly sometimes collect value 999999999999.9999 only one time and next it continues with normal values. This value appears alone among others normal values.
I don't know if is a overflow bug of zabbix or maybe of my operating system.
This issue damage all graphs about current a trends values of this item.
It only happen with real values and I'm not sure if is only with this item.
You could use:
select * from history where value = (select max(value) from history);
In trends:
select * from trends where max_value = (select max(max_value) from trends);
and if appears 999999999999.9999 probably is a bug.
Now I must delete this values from DB to repair my graphs ...