DCI Spike removal

Started by dragon2611, October 22, 2013, 01:13:17 AM

Previous topic - Next topic

dragon2611

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

Victor Kirhenshtein

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

dragon2611

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.