NetXMS Support Forum

English Support => Feature Requests => Topic started by: dragon2611 on October 22, 2013, 01:13:17 AM

Title: DCI Spike removal
Post by: dragon2611 on October 22, 2013, 01:13:17 AM
Is it possible when using DCI's to store values for things like bandwidth usage to have an option to scan through the data and remove spikes caused by things like counter resets due to reboots.etc

I don't think my home connection is quite capable of transferring 5.5TB/s
Title: Re: DCI Spike removal
Post by: Victor Kirhenshtein on October 22, 2013, 02:11:25 PM
Hi!

You can add transformation script like this:


if ($1 > 100)
   return 100;
return $1;


(replace 100 with your maximal meaningful value).

Best regards,
Victor
Title: Re: DCI Spike removal
Post by: dragon2611 on October 22, 2013, 02:16:59 PM
Quote from: Victor Kirhenshtein on October 22, 2013, 02:11:25 PM
Hi!

You can add transformation script like this:


if ($1 > 100)
   return 100;
return $1;


(replace 100 with your maximal meaningful value).

Best regards,
Victor

That would probably do it thanks.