From ae76e4ed5aadbf013ce3eacd9aebee0f106e9af8 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Thu, 2 Sep 2021 19:11:45 -0500 Subject: [PATCH] [package testing] Update logging and pid configuration (#111059) With the merge of #98213, pid and log file settings were moved from command line options to kibana.yml. Package tests use a non-default kibana.yml and these settings were not applied. This updates our configuration to include these settings. --- test/package/templates/kibana.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/package/templates/kibana.yml b/test/package/templates/kibana.yml index a5e44b7acb0189..ac2d03467051b1 100644 --- a/test/package/templates/kibana.yml +++ b/test/package/templates/kibana.yml @@ -3,3 +3,6 @@ server.host: 0.0.0.0 elasticsearch.hosts: http://192.168.50.1:9200 elasticsearch.username: "{{ elasticsearch_username }}" elasticsearch.password: "{{ elasticsearch_password }}" + +pid.file: /run/kibana/kibana.pid +logging.dest: /var/log/kibana/kibana.log \ No newline at end of file