diff --git a/contrib/logwatch/radicale b/contrib/logwatch/radicale index 03ffbc48..8acbe0ae 100644 --- a/contrib/logwatch/radicale +++ b/contrib/logwatch/radicale @@ -91,9 +91,15 @@ sub ConvertTokens($) { if (defined $tokens_h{"sync-token"}) { push @result_a, "ST"; } + if (defined $tokens_h{"sync-collection"}) { + push @result_a, "SC"; + } if (defined $tokens_h{"getctag"}) { push @result_a, "GCT"; } + if (defined $tokens_h{"getetag"}) { + push @result_a, "GET"; + } # TODO: add potential others which causing long duration $result = ""; if (scalar(@result_a) > 0) { @@ -251,7 +257,7 @@ if (keys %Logins) { if (keys %ResponseTimes) { $length = MaxLength(\%ResponseTimes); print "\n**Response timings (counts, seconds) (D= R= F=)**\n"; - print "* Flags: ST:sync-token GCT:getctag\n"; + print "* Flags: ST:sync-token SC:sync-collection GCT:getctag GET:getetag\n"; printf "%-" . $length . "s | %7s | %7s | %7s | %7s |\n", "Response", "cnt", "min", "max", "avg"; print "-" x($length + 42) . "\n"; foreach my $req (sort keys %ResponseTimes) {