Addition of logstash configs

This commit is contained in:
Austin Taylor
2017-07-25 12:23:47 -04:00
parent dab91faff8
commit 6a29cb7b84
7 changed files with 864 additions and 2 deletions

14
logstash/0001_input_beats.conf Executable file
View File

@ -0,0 +1,14 @@
input {
beats {
port => 5044
tags => "beats"
}
}
filter {
if [beat][hostname] == "filebeathost" {
mutate {
add_tag => ["nessus"]
}
}
}