summaryrefslogtreecommitdiffstats
path: root/support/logfilter
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 16:14:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 16:14:31 +0000
commit2d5707c7479eacb3b1ad98e01b53f56a88f8fb78 (patch)
treed9c334e83692851c02e3e1b8e65570c97bc82481 /support/logfilter
parentInitial commit. (diff)
downloadrsync-2d5707c7479eacb3b1ad98e01b53f56a88f8fb78.tar.xz
rsync-2d5707c7479eacb3b1ad98e01b53f56a88f8fb78.zip
Adding upstream version 3.2.7.upstream/3.2.7
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'support/logfilter')
-rwxr-xr-xsupport/logfilter34
1 files changed, 34 insertions, 0 deletions
diff --git a/support/logfilter b/support/logfilter
new file mode 100755
index 0000000..29cfe69
--- /dev/null
+++ b/support/logfilter
@@ -0,0 +1,34 @@
+#!/usr/bin/env perl
+# Filter the rsync daemon log messages by module name. The log file can be
+# in either syslog format or rsync's own log-file format. Note that the
+# MODULE_NAME parameter is used in a regular-expression match in order to
+# allow regex wildcards to be used. You can also limit the output by
+# directory hierarchy in a module. Examples:
+#
+# logfilter foo /var/log/rsyncd.log # output lines for module foo
+# logfilter foo/dir /var/log/syslog # limit lines to those in dir of foo
+
+use strict;
+
+my $match = shift;
+die "Usage: logfilter MODULE_NAME [LOGFILE ...]\n" unless defined $match;
+
+my $syslog_prefix = '\w\w\w +\d+ \d\d:\d\d:\d\d \S+ rsyncd';
+my $rsyncd_prefix = '\d\d\d\d/\d\d/\d\d \d\d:\d\d:\d\d ';
+
+my %pids;
+
+while (<>) {
+ my($pid,$msg) = /^(?:$syslog_prefix|$rsyncd_prefix)\[(\d+)\]:? (.*)/o;
+ next unless defined $pid;
+ my($mod_spec) = $msg =~ /^rsync (?:on|to) (\S+) from /;
+ if (defined $mod_spec) {
+ if ($mod_spec =~ /^$match(\/\S*)?$/o) {
+ $pids{$pid} = 1;
+ } else {
+ delete $pids{$pid};
+ }
+ }
+ next unless $pids{$pid};
+ print $_;
+}