Hi,
I noticed that setting the Update interval (in sec) to a higher value like 30 or 60 causes Zabbix to report wrong values. However, if I set the update interval to 5 seconds or even 1 second, values reported by this item are correct. Here's the configuration of my item:
The chart of this item looks like this (values shown on this chart have NOTHING to do with the actual bandwidth on this port - they are incorrect):

When I change the update interval to 5 seconds and truncate `history_uint`, `history`, `trends` and `trends_uint` tables, the chart shows completely different values (which are correct):

Why is it behaving like that? I guess I misunderstood the way Zabbix calculates delta. Can someone shed some light on this topic?
I noticed that setting the Update interval (in sec) to a higher value like 30 or 60 causes Zabbix to report wrong values. However, if I set the update interval to 5 seconds or even 1 second, values reported by this item are correct. Here's the configuration of my item:
HTML Code:
SNMP OID: interfaces.ifTable.ifEntry.ifOutOctets.26 Units: b/s Use custom multiplier: 8 Update interval (in sec): 15 Store value: Delta (speed per second)

When I change the update interval to 5 seconds and truncate `history_uint`, `history`, `trends` and `trends_uint` tables, the chart shows completely different values (which are correct):

Why is it behaving like that? I guess I misunderstood the way Zabbix calculates delta. Can someone shed some light on this topic?
Looks like the 32 bit counter was indeed overflowing. I changed the OID to:
Comment