Minor improvement over logstash pipeline

This commit is contained in:
George Kalampokis 2022-03-21 15:59:15 +02:00
parent dea57b1cf8
commit a3da159564
1 changed files with 4 additions and 11 deletions

View File

@ -2,18 +2,11 @@ input {
pipeline { address => open_dmp_send_to_elastic } pipeline { address => open_dmp_send_to_elastic }
} }
filter {
}
output { output {
elasticsearch { elasticsearch {
hosts => "elasticsearch:9200" hosts => "elasticsearch:9200"
index => "opendmp.logs"
user => elastic user => elastic
password => password => ""
index =>"opendmp.logs" }
#manage_template => true }
#template => "/usr/share/logstash/templates/audit/openDMP.json"
#template_name => "cite.elas.openDMP-audit*"
#template_overwrite => true
}
}