From a3da159564fc3664f207cc9760cd79c85e07986b Mon Sep 17 00:00:00 2001 From: George Kalampokis Date: Mon, 21 Mar 2022 15:59:15 +0200 Subject: [PATCH] Minor improvement over logstash pipeline --- .../pipeline/open_dmp_send_to_elastic.conf | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/ELK.Docker/shared/config-elk/logstash/pipeline/open_dmp_send_to_elastic.conf b/ELK.Docker/shared/config-elk/logstash/pipeline/open_dmp_send_to_elastic.conf index 8b0f9fe02..2dd830467 100644 --- a/ELK.Docker/shared/config-elk/logstash/pipeline/open_dmp_send_to_elastic.conf +++ b/ELK.Docker/shared/config-elk/logstash/pipeline/open_dmp_send_to_elastic.conf @@ -2,18 +2,11 @@ input { pipeline { address => open_dmp_send_to_elastic } } -filter { -} - output { elasticsearch { hosts => "elasticsearch:9200" + index => "opendmp.logs" user => elastic - password => - index =>"opendmp.logs" - #manage_template => true - #template => "/usr/share/logstash/templates/audit/openDMP.json" - #template_name => "cite.elas.openDMP-audit*" - #template_overwrite => true - } -} \ No newline at end of file + password => "" + } +}