# This file is managed by Puppet, do not edit manually, your changes *will* be overwritten! # # Please see the source file for context and more information: # # https://github.com/elasticsearch/elasticsearch/blob/master/config/logging.yml # es.logger.level: <%= @logging_level %> rootLogger: <%= @logging_level %>, console, file # ----- Configuration set by Puppet --------------------------------------------- <% @logging_hash.sort.each do |key,value| %> logger.<%= key %>: <%= value %> <% end %> # ------------------------------------------------------------------------------- additivity: index.search.slowlog: false index.indexing.slowlog: false appender: console: type: console layout: type: consolePattern conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n" file: type: dailyRollingFile file: ${path.logs}/${cluster.name}.log datePattern: "'.'yyyy-MM-dd" layout: type: pattern conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n" index_search_slow_log_file: type: dailyRollingFile file: ${path.logs}/${cluster.name}_index_search_slowlog.log datePattern: "'.'yyyy-MM-dd" layout: type: pattern conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n" index_indexing_slow_log_file: type: dailyRollingFile file: ${path.logs}/${cluster.name}_index_indexing_slowlog.log datePattern: "'.'yyyy-MM-dd" layout: type: pattern conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"