elasticsearch-logging.yml.j2 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. # you can override this using by setting a system property, for example -Des.logger.level=DEBUG
  2. es.logger.level: INFO
  3. rootLogger: ${es.logger.level}, {{root_logger}}
  4. logger:
  5. # log action execution errors for easier debugging
  6. action: WARN
  7. #
  8. # deprecation logging, turn to DEBUG to see them
  9. deprecation: WARN, deprecation_log_file
  10. # reduce the logging for aws, too much is logged under the default INFO
  11. com.amazonaws: WARN
  12. io.fabric8.elasticsearch: ${PLUGIN_LOGLEVEL}
  13. io.fabric8.kubernetes: ${PLUGIN_LOGLEVEL}
  14. # aws will try to do some sketchy JMX stuff, but its not needed.
  15. com.amazonaws.jmx.SdkMBeanRegistrySupport: ERROR
  16. com.amazonaws.metrics.AwsSdkMetrics: ERROR
  17. org.apache.http: INFO
  18. # gateway
  19. #gateway: DEBUG
  20. #index.gateway: DEBUG
  21. # peer shard recovery
  22. #indices.recovery: DEBUG
  23. # discovery
  24. #discovery: TRACE
  25. index.search.slowlog: TRACE, index_search_slow_log_file
  26. index.indexing.slowlog: TRACE, index_indexing_slow_log_file
  27. # search-guard
  28. com.floragunn.searchguard: WARN
  29. additivity:
  30. index.search.slowlog: false
  31. index.indexing.slowlog: false
  32. deprecation: false
  33. appender:
  34. console:
  35. type: console
  36. layout:
  37. type: consolePattern
  38. conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %.1000m%n"
  39. # need this filter until https://github.com/openshift/origin/issues/14515 is fixed
  40. filter:
  41. 1:
  42. type: org.apache.log4j.varia.StringMatchFilter
  43. StringToMatch: "SSL Problem illegal change cipher spec msg, conn state = 6, handshake state = 1"
  44. AcceptOnMatch: false
  45. file:
  46. type: dailyRollingFile
  47. file: ${path.logs}/${cluster.name}.log
  48. datePattern: "'.'yyyy-MM-dd"
  49. layout:
  50. type: pattern
  51. conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
  52. # need this filter until https://github.com/openshift/origin/issues/14515 is fixed
  53. filter:
  54. 1:
  55. type: org.apache.log4j.varia.StringMatchFilter
  56. StringToMatch: "SSL Problem illegal change cipher spec msg, conn state = 6, handshake state = 1"
  57. AcceptOnMatch: false
  58. # Use the following log4j-extras RollingFileAppender to enable gzip compression of log files.
  59. # For more information see https://logging.apache.org/log4j/extras/apidocs/org/apache/log4j/rolling/RollingFileAppender.html
  60. #file:
  61. #type: extrasRollingFile
  62. #file: ${path.logs}/${cluster.name}.log
  63. #rollingPolicy: timeBased
  64. #rollingPolicy.FileNamePattern: ${path.logs}/${cluster.name}.log.%d{yyyy-MM-dd}.gz
  65. #layout:
  66. #type: pattern
  67. #conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
  68. deprecation_log_file:
  69. type: dailyRollingFile
  70. file: ${path.logs}/${cluster.name}_deprecation.log
  71. datePattern: "'.'yyyy-MM-dd"
  72. layout:
  73. type: pattern
  74. conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
  75. index_search_slow_log_file:
  76. type: dailyRollingFile
  77. file: ${path.logs}/${cluster.name}_index_search_slowlog.log
  78. datePattern: "'.'yyyy-MM-dd"
  79. layout:
  80. type: pattern
  81. conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"
  82. index_indexing_slow_log_file:
  83. type: dailyRollingFile
  84. file: ${path.logs}/${cluster.name}_index_indexing_slowlog.log
  85. datePattern: "'.'yyyy-MM-dd"
  86. layout:
  87. type: pattern
  88. conversionPattern: "[%d{ISO8601}][%-5p][%-25c] %m%n"