|
|
@@ -1,6 +1,9 @@
|
|
|
# This file is related to Radicale - CalDAV and CardDAV server
|
|
|
# for logwatch (script)
|
|
|
# Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
|
|
|
+#
|
|
|
+# Detail levels
|
|
|
+# >= 5: Logins, ResponseTimes
|
|
|
|
|
|
$Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
|
|
|
|
|
|
@@ -98,7 +101,7 @@ if (keys %Requests) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-if ($Details >= 5 && keys %Requests) {
|
|
|
+if ($Detail >= 5 && keys %Requests) {
|
|
|
print "\n**Successful login counters**\n";
|
|
|
printf "%-25s | %7s |\n", "Login", "cnt";
|
|
|
print "-" x37 . "\n";
|