NetXMS Support Forum

English Support => General Support => Topic started by: kiki on December 20, 2016, 09:59:39 AM

Title: Last Values
Post by: kiki on December 20, 2016, 09:59:39 AM
The image below shows last traffic values collected.
(https://s23.postimg.org/6bc9tltgr/lastvalues.jpg)
Traffic values in red are incorrect. How do I fix this? 

Title: Re: Last Values
Post by: Victor Kirhenshtein on December 21, 2016, 10:57:57 PM
Hi,

currently the only way is to use transformation script to filter out impossible values (usually they happen when counter is reset). We plan to improve this in one of next releases.

Best regards,
Victor
Title: Re: Last Values
Post by: kiki on January 10, 2017, 01:05:48 PM
Experimenting the transformation script below. Correct me if I'm wrong.
($1 > 999999999) ? 0 : $1 * 8
Title: Re: Last Values
Post by: Victor Kirhenshtein on January 10, 2017, 03:48:35 PM
Yes, it's correct (assuming max value is set correctly).

Best regards,
Victor