From 9df3db075fb6f8d98ec5f8d43a3f90cbdcc557a4 Mon Sep 17 00:00:00 2001 From: Jonathan Budzenski Date: Wed, 6 Oct 2021 17:46:33 -0500 Subject: [PATCH] [config] Remove leading spaces from logging configuration (#114168) * [config] Remove leading spaces from logging configuration This is a consistency check with other areas of the stack and other configurations in kibana.yml. Part of https://github.com/elastic/kibana/issues/8268 * Update kibana.yml --- config/kibana.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/config/kibana.yml b/config/kibana.yml index 13a4b9bb98e85..2648cdfa924ae 100644 --- a/config/kibana.yml +++ b/config/kibana.yml @@ -88,28 +88,27 @@ #pid.file: /run/kibana/kibana.pid # Set the value of this setting to off to suppress all logging output, or to debug to log everything. -# logging.root.level: debug +#logging.root.level: debug # Enables you to specify a file where Kibana stores log output. -# logging.appenders.default: -# type: file -# fileName: /var/logs/kibana.log - +#logging.appenders.default: +# type: file +# fileName: /var/logs/kibana.log # Logs queries sent to Elasticsearch. -# logging.loggers: -# - name: elasticsearch.queries -# level: debug +#logging.loggers: +# - name: elasticsearch.queries +# level: debug # Logs http responses. -# logging.loggers: -# - name: http.server.response -# level: debug +#logging.loggers: +# - name: http.server.response +# level: debug # Logs system usage information. -# logging.loggers: -# - name: metrics.ops -# level: debug +#logging.loggers: +# - name: metrics.ops +# level: debug # Set the interval in milliseconds to sample system and process performance # metrics. Minimum is 100ms. Defaults to 5000.