Files
securityonion/salt/logstash/files/conf.d/6001_bro_import.conf
2018-02-05 12:36:27 -05:00

15 lines
316 B
Plaintext

# Updated by: Doug Burks
# Last Update: 5/16/2017
#
# If we're importing old Bro logs, let's use the original Bro timestamp instead of the time of import
filter {
if "import" in [tags] and "bro" in [tags] {
date {
match => [ "timestamp", "UNIX" ]
}
mutate {
#add_tag => [ "conf_file_6001"]
}
}
}