Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,16 @@ relabel_rules.append("""
}
""")

# Work around samba log flooding from NethServer/dev#7375
# Drop "Decryption has failed" messages from samba-dc container
relabel_rules.append("""
rule {
source_labels = ["__journal_syslog_identifier", "__journal_message"]
regex = "samba-dc;.*TLS source4/lib/tls/tls_tstream.c:1449 - Decryption has failed.*"
action = "drop"
}
""")

# Set label category=security for messages from sshd, PAM, Polkit, etc.
# that are often written to /var/log/secure or equivalent.
# Regex matches RFC3164 Syslog facility codes for security events
Expand Down
Loading