Last active
August 13, 2017 02:44
-
-
Save jlintz/477697ba07e6851d161b to your computer and use it in GitHub Desktop.
syslog logstash filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filter { | |
if [type] == "syslog" { | |
grok { | |
match => { "message" => [ "%{SYSLOGPAMSESSION}", "%{CRONLOG}", "%{SYSLOGLINE}" ] } | |
add_field => [ "received_at", "%{@timestamp}" ] | |
add_field => [ "received_from", "%{host}" ] | |
overwrite => [ "message" ] # After we've processed the log we dont need the raw message anymore | |
} | |
grep { | |
drop => false | |
match => [ "message", "Disconnecting: Too many authentication failures for %{USER} \[preauth\]" ] | |
add_tag => [ "auth_failure" ] | |
} | |
grep { | |
drop => false | |
match => [ "message", "Invalid user %{USER} from %{IP}" ] | |
add_tag => [ "auth_failure" ] | |
} | |
grep { | |
drop => false | |
match => [ "message", "incorrect password attempts" ] | |
add_tag => [ "auth_failure" ] | |
} | |
grep { | |
drop => false | |
match => [ "message", "Connection closed by %{IP} \[preauth\]" ] | |
add_tag => [ "auth_failure" ] | |
} | |
grep { | |
drop => false | |
match => [ "message", "Accepted (publickey|password) for %{USER} from %{IP} port %{POSINT} ssh2" ] | |
add_tag => [ "auth_login" ] | |
} | |
syslog_pri { } | |
date { | |
match => [ "timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment