mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
20 lines
343 B
Plaintext
20 lines
343 B
Plaintext
# Original Author: Justin Henderson
|
|
# SANS Instructor and author of SANS SEC555: SIEM and Tactical Analytics
|
|
# Updated by: Doug Burks
|
|
# Last Update: 5/15/2017
|
|
|
|
input {
|
|
tcp {
|
|
port => 6050
|
|
codec => json
|
|
tags => "syslogng"
|
|
}
|
|
}
|
|
filter {
|
|
if "syslogng" in [tags] {
|
|
mutate {
|
|
#add_tag => [ "conf_file_0000"]
|
|
}
|
|
}
|
|
}
|