Release Notes - Fixes and Enhancements - NerveCenter 3.8.05 - TcpRetransStatus -
Previous: IfLoadRates     Next: Outstanding Issues

TcpRetransStatus

To correct the Poll Condition for TcpRetransStatus, add the bold lines to the Poll Condition.


--> my $tcpOutSegsDelta = delta( tcp.tcpOutSegs );
--> if ( $tcpOutSegsDelta != 0 )
--> {
   my $tcp_retrans = ( delta( tcp.tcpRetransSegs ) / $tcpOutSegsDelta );
   if ($tcp_retrans <= .02)
   {
   FireTrigger("tcpRetransNorm");
   }
   elsif ($tcp_retrans > .02 and $tcp_retrans >= .05)
   {
   FireTrigger("tcpRetransMed");
   }
   elsif ($tcp_retrans > .05)
   {
   FireTrigger("tcpRetransHigh");
   }
--> }


Previous: IfLoadRates Next: Outstanding Issues
This file was last updated on 20 February 2004