I realized one of my counter changed to "unsupported" a few days ago:
Item:
type: float
store as: delta (speed per second)
The Zabbix Server log says:
16254:20100419:173338.711 Item
[zabbix-db
ostgresql.alldatabase.stats[tup_returned]]
error: Type of received value [1091552245463] is not suitable for value type [Numeric (float)]
zabbix_get works and returns (without space): 1 091 663 520 114
I suspect i got caught by:
src/libs/zbxsysinfo/sysinfo.c:622
=> if (SUCCEED != DBchk_double(value_double))
=> break;
which complains when value is < -1*10^12 or > 1*10^12
Item:
type: float
store as: delta (speed per second)
The Zabbix Server log says:
16254:20100419:173338.711 Item
[zabbix-db
ostgresql.alldatabase.stats[tup_returned]] error: Type of received value [1091552245463] is not suitable for value type [Numeric (float)]
zabbix_get works and returns (without space): 1 091 663 520 114
I suspect i got caught by:
src/libs/zbxsysinfo/sysinfo.c:622
=> if (SUCCEED != DBchk_double(value_double))
=> break;
which complains when value is < -1*10^12 or > 1*10^12
Comment