Posts elasticsearch depreciation log 안 보기
Post
Cancel

elasticsearch depreciation log 안 보기

개요

  • elasticsearch의 depreciation log가 너무 많이 기록되어
    kibana에서 조회 시 정작 필요한 로그 조회가 힘들게 되었다.
  • depreciation log를 보지 않도록 설정한다.

logger.org.elasticsearch.deprecation를 OFF

  • 1
    2
    3
    4
    
      curl -XPUT \
          "http://localhost:9200/_cluster/settings?pretty" \
          -H 'Content-Type: application/json' \
          -d '{ "persistent": { "logger.org.elasticsearch.deprecation": "OFF" } }'
    

참고

This post is licensed under CC BY 4.0 by the author.