NetXMS Support Forum

English Support => General Support => Topic started by: lindeamon on May 12, 2013, 12:02:11 PM

Title: Adsl Network Usage
Post by: lindeamon on May 12, 2013, 12:02:11 PM
hi,

i have configured netxms to monitor my adsl usage.
i have configured it to run on the pvc nic and i used the wizard to do this.
every time some thing happens to nic the graph is not showing the delta values and i do not know how much usage is going through the nic.
after a few samples the values are aligned and i see the correct values.
i have 5mb adsl line and the values i want to see {the delta shows them correctly} is 600k for inbound and 60 for outbound and instead i see values like 100mb
i have attached screen shot of the bad graph.

10x,
lindeamon
Title: Re: Adsl Network Usage
Post by: Victor Kirhenshtein on May 12, 2013, 12:56:43 PM
Hi!

This can happen if counter resets to 0 at some point. Then delta between new value of 0 and previous value if very large. You can prevent such incorrect spikes by checking for reasonable maximum value in transformation script. For example, if max. possible value for inbound is 600000, you can use transformation script like this:


return ($1 <= 600000) ? $1 : 0;


Best regards,
Victor
Title: Re: Adsl Network Usage
Post by: lindeamon on May 12, 2013, 01:27:37 PM
hi victor,

thank you for the quick response
i will use this

Best Regards,
Lindeamon