File tree 2 files changed +44
-0
lines changed
2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ coming[8.0.0]
24
24
* <<breaking_80_indices_changes>>
25
25
* <<breaking_80_ingest_changes>>
26
26
* <<breaking_80_java_changes>>
27
+ * <<breaking_80_logging_changes>>
27
28
* <<breaking_80_mappings_changes>>
28
29
* <<breaking_80_network_changes>>
29
30
* <<breaking_80_node_changes>>
@@ -126,6 +127,7 @@ include::migrate_8_0/ilm.asciidoc[]
126
127
include::migrate_8_0/indices.asciidoc[]
127
128
include::migrate_8_0/ingest.asciidoc[]
128
129
include::migrate_8_0/java.asciidoc[]
130
+ include::migrate_8_0/logging.asciidoc[]
129
131
include::migrate_8_0/mappings.asciidoc[]
130
132
include::migrate_8_0/network.asciidoc[]
131
133
include::migrate_8_0/node.asciidoc[]
Original file line number Diff line number Diff line change
1
+ [discrete]
2
+ [[breaking_80_logging_changes]]
3
+ ==== Logging changes
4
+
5
+ //NOTE: The notable-breaking-changes tagged regions are re-used in the
6
+ //Installation and Upgrade Guide
7
+
8
+ //tag::notable-breaking-changes[]
9
+ .{es} JSON logs now comply with ECS.
10
+ [%collapsible]
11
+ ====
12
+ *Details* +
13
+ {es}'s {ref}/logging.html[JSON logs] now comply with the
14
+ {ecs-ref}/index.html[Elastic Common Schema (ECS)]. Previously, {es}'s JSON logs
15
+ used a custom schema.
16
+
17
+ *Impact* +
18
+ If your application parses {es}'s JSON logs, update it to support the new ECS
19
+ format.
20
+ ====
21
+
22
+
23
+ .{es} no longer emits deprecation logs or slow logs in plaintext.
24
+ [%collapsible]
25
+ ====
26
+ *Details* +
27
+ {es} no longer emits a plaintext version of the following logs:
28
+
29
+ * Deprecation logs
30
+ * Indexing slow logs
31
+ * Search slow logs
32
+
33
+ These logs are now only available in JSON.
34
+
35
+ Server logs are still available in both a JSON and plaintext format.
36
+
37
+ *Impact* +
38
+ If your application parses {es}'s plaintext logs, update it to use the new ECS
39
+ JSON logs.
40
+ ====
41
+
42
+ // end::notable-breaking-changes[]
You can’t perform that action at this time.
0 commit comments