mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
19 lines
335 B
Plaintext
19 lines
335 B
Plaintext
# Author: Wes Lambert
|
|
# Last Update: 12/11/2017
|
|
filter {
|
|
if "beat" in [tags] {
|
|
mutate {
|
|
##add_tag => [ "conf_file_9000"]
|
|
}
|
|
}
|
|
}
|
|
output {
|
|
if "beat" in [tags] {
|
|
elasticsearch {
|
|
hosts => elasticsearch
|
|
index => "logstash-beats-%{+YYYY.MM.dd}"
|
|
template => "/beats-template.json"
|
|
}
|
|
}
|
|
}
|