12-19-2011, 12:14 AM
Hi there!
I have some troubles with data type generic_data_inc:
as says documentation:
Im create a modules to monitor eth1 data flow, here the definition of modules:
but i get randomly "0" value in data( see screenshot ),
as i know /sys/class/net/eth1/statistics/tx_bytes returns a value of total transmitted bytes on eth1 and this value always increment. But how there zerros appear? and why timestamp of zerro values are same. I look it in mysql
the zerro values have same timestamp with the previous one (see screenshot)
I have some troubles with data type generic_data_inc:
as says documentation:
Quote:The whole numeric data equals to the differential being between the current value and the previous one. When this differential is negative, the value is fixed to 0.
Im create a modules to monitor eth1 data flow, here the definition of modules:
Code:
# Networking.
module_begin
module_name nettraf_eth1_in
module_type generic_data_inc
module_exec cat /sys/class/net/eth1/statistics/rx_bytes
module_postprocess 0.0009765625
module_description Bytes IN (postprocess ti Kb)
module_end
module_begin
module_name nettraf_eth1_out
module_type generic_data_inc
module_exec cat /sys/class/net/eth1/statistics/tx_bytes
module_postprocess 0.0009765625
module_description Bytes OUT (postprocess to Kb)
module_end
but i get randomly "0" value in data( see screenshot ),
as i know /sys/class/net/eth1/statistics/tx_bytes returns a value of total transmitted bytes on eth1 and this value always increment. But how there zerros appear? and why timestamp of zerro values are same. I look it in mysql
Code:
SELECT * FROM `tagente_datos`WHERE `id_agente_modulo` =%AgentID%
the zerro values have same timestamp with the previous one (see screenshot)