-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make breaking changes separate files (#12002)
- Loading branch information
1 parent
622377a
commit c17586a
Showing
2 changed files
with
67 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
[[breaking-changes-7.0]] | ||
|
||
=== Breaking changes in 7.0 | ||
|
||
This section discusses the main changes that you should be aware of if you | ||
upgrade the Beats to version 7.0. {see-relnotes} | ||
|
||
[float] | ||
==== HTML escaping is disabled by default | ||
|
||
Starting with verion 7.0, embedded HTML or special symbols like `<` and `>` are | ||
no longer escaped by default when publishing events. | ||
To configure the old behavior of escaping HTML, set `escape_html: | ||
true` in the output configuration. | ||
|
||
//tag::notable-breaking-changes[] | ||
[float] | ||
==== Filebeat registry | ||
|
||
Starting with version 7.0, Filebeat stores the registry in a sub-directory. | ||
The directory is configured using the `filebeat.registry.path` setting. | ||
If Filebeat finds an old registry file at the configured location, it will | ||
automatically migrate the registry file to the new format. | ||
|
||
The settings `filebeat.registry_flush` and `filebeat.registry_file_permission` | ||
have been renamed to `filebeat.registry.flush` and | ||
`filebeat.registry.file_permission`. | ||
|
||
//end::notable-breaking-changes[] | ||
|
||
[float] | ||
==== ILM support | ||
|
||
Support for Index Lifecycle Management is GA with Beats version 7.0. This | ||
release moved most ILM settings from the `output.elasticsearch.ilm` namespace to | ||
the `setup.ilm` namespace. | ||
|
||
//tag::notable-breaking-changes[] | ||
|
||
[float] | ||
==== Filebeat apache2 module renamed | ||
|
||
The Filebeat `apache2` module is renamed to `apache` in 7.0. | ||
|
||
[float] | ||
==== Field name changes | ||
|
||
include::./field-name-changes.asciidoc[] | ||
|
||
//end::notable-breaking-changes[] | ||
|
||
[float] | ||
==== Auditbeat type changes | ||
|
||
The Auditbeat JSON data types produced by the output have been changed to align | ||
with the data types used in the Elasticsearch index template. | ||
|
||
.Auditbeat Type Changes in 7.0 | ||
[frame="topbot",options="header"] | ||
|====================== | ||
|Field|Old Type|New Type | ||
|`file.gid` |number |string | ||
|`file.uid` |number |string | ||
|`process.pid` |string |number | ||
|`process.ppid` |string |number | ||
|====================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters