Skip to content

Commit

Permalink
add logging breaking changes from 5.3 to 6.0 (#31583)
Browse files Browse the repository at this point in the history
logging related system properties were changed in logging between
5.2 and 5.3. Existing `es.logs` system property was deprecated in
5.x, and removed in 6.0.
  • Loading branch information
talevy authored Jun 27, 2018
1 parent 105fded commit c751779
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/reference/migration/migrate_6_0/packaging.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,17 @@ environment used to start Elasticsearch (and various supporting scripts). This
legacy feature could be useful when there were several environment variables
useful for configuring JVM options; this functionality had previously been
replaced by <<jvm-options>>. Therefore, `ES_INCLUDE` has been removed.

==== Logging configuration

Previously Elasticsearch exposed a single system property (`es.logs`) that
included the absolute path to the configured logs directory, and the prefix of
the filenames used for the various logging files (the main log file, the
deprecation log, and the slow logs). This property has been replaced in favor of
three properties:

* `es.logs.base_path`: the absolute path to the configured logs directory
* `es.logs.cluster_name`: the default prefix of the filenames used for the
various logging files
* `es.logs.node_name`: exposed if `node.name` is configured for inclusion in
the filenames of the various logging files (if you prefer)

0 comments on commit c751779

Please sign in to comment.