diff options
author | Erich Eckner <git@eckner.net> | 2020-02-24 05:46:28 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2020-02-24 05:46:28 +0100 |
commit | 95cd1e213fe76b17f56f8808968d6b6c4b9c5908 (patch) | |
tree | 7e6c5210b8dbb8dc6c18282b85ef04a7b29191ad | |
parent | af78c4dfdae433a3881df5ee1cc5c02517f4d009 (diff) | |
download | logwatch-overrides-95cd1e213fe76b17f56f8808968d6b6c4b9c5908.tar.xz |
named: ignore transfer logs of views
-rw-r--r-- | named | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -81,7 +81,7 @@ while (defined($ThisLine = <STDIN>)) { # Be sure to catch: transfer of 'zone' from IP#53: failed to connect: timed out # not exact just triggers a full transfer ($ThisLine =~ /^(client \S+ [0-9.]+#\d+ \(\S+\): )?transfer of .*: (IXFR|AXFR(|-style IXFR) (started|ended)|connected using|Transfer completed|failed while receiving responses: not exact)/) or - ($ThisLine =~ /^transfer of \S+ from \S+: (Transfer status: (timed out|host unreachable|connection reset|connection refused|success|REFUSED|SERVFAIL|up to date|end of file)|resetting|giving up: timed out)/) or + ($ThisLine =~ /transfer of \S+: (Transfer status: (timed out|host unreachable|connection reset|connection refused|success|REFUSED|SERVFAIL|up to date|end of file)|resetting|giving up: timed out)/) or ($ThisLine =~ /using \d+ CPU/) or ($ThisLine =~ /loading configuration/) or ($ThisLine =~ /command channel listening/) or |