Kibana Dashboards, filebeat and logstash configs

This commit is contained in:
Austin Taylor
2017-07-10 00:15:28 -04:00
parent ccf774099f
commit 034b204255
7 changed files with 858 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# Author: Austin Taylor
# Email: email@austintaylor.io
# Last Update: 05/21/2017
# Creates logstash-nessus
output {
if "nessus" in [tags] or [type] == "nessus" {
#stdout { codec => rubydebug }
elasticsearch {
hosts => [ "elasticsearch01.yourdomain.local","elasticseach02.yourdomain.local","elasticsearch03.yourdomain.local" ]
index => "logstash-nessus-%{+YYYY.MM}"
}
}
}