INN commit: trunk/scripts (innreport_inn.pm)

INN Commit rra at isc.org
Sun Oct 3 11:59:16 UTC 2010


    Date: Sunday, October 3, 2010 @ 04:59:16
  Author: iulius
Revision: 9131

Ignore in innreport when innfeed rolls its funnel file.
Otherwise, it shows up as "unknown entry" in the report.

Thanks to Florian Schlichting for the patch.

Modified:
  trunk/scripts/innreport_inn.pm

------------------+
 innreport_inn.pm |    4 ++++
 1 file changed, 4 insertions(+)

Modified: innreport_inn.pm
===================================================================
--- innreport_inn.pm	2010-09-28 20:21:26 UTC (rev 9130)
+++ innreport_inn.pm	2010-10-03 11:59:16 UTC (rev 9131)
@@ -1055,6 +1055,10 @@
       return 1 if $left =~ m/\(quickly\) /o;
       # ME config: value of streaming is not a boolean
       return 1 if $left =~ m/config: value of \S+ is not/o;
+      # innfeed rolling funnel file
+      return 1 if $left =~ m/ preparing to roll /o;
+      return 1 if $left =~ m/ reached EOF in /o;
+      return 1 if $left =~ m/ opened /o;
     }
     # hostChkCxn - now: x.xx, prev: x.xx, abs: xx, curr: x
     return 1 if $left =~ m/ hostChkCxn - now/o;




More information about the inn-committers mailing list