You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/migration/migrate_8_0.asciidoc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ for example, `logstash-*`.
52
52
==== Default logging timezone is now the system's timezone
53
53
*Details:* In prior releases the timezone used in logs defaulted to UTC. We now use the host machine's timezone by default.
54
54
55
-
*Impact:* To restore the previous behavior, in kibana.yml use the pattern layout, with a date modifier:
55
+
*Impact:* To restore the previous behavior, in kibana.yml use the pattern layout, with a {kibana-ref}/logging-service.html#date-format[date modifier]:
56
56
[source,yaml]
57
57
-------------------
58
58
logging:
@@ -87,7 +87,7 @@ See https://github.com/elastic/kibana/pull/87939 for more details.
87
87
88
88
[float]
89
89
==== Logging destination is specified by the appender
90
-
*Details:* Previously log destination would be `stdout` and could be changed to `file` using `logging.dest`. With the new logging configuration, you can specify the destination using appenders.
90
+
*Details:* Previously log destination would be `stdout` and could be changed to `file` using `logging.dest`. With the new logging configuration, you can specify the destination using {kibana-ref}/logging-service.html#logging-appenders[appenders].
91
91
92
92
*Impact:* To restore the previous behavior and log records to *stdout*, in `kibana.yml` use an appender with `type: console`.
93
93
[source,yaml]
@@ -118,7 +118,7 @@ logging:
118
118
119
119
[float]
120
120
==== Set log verbosity with root
121
-
*Details:* Previously logging output would be specified by `logging.silent` (none), `logging.quiet` (error messages only) and `logging.verbose` (all). With the new logging configuration, set the minimum required log level.
121
+
*Details:* Previously logging output would be specified by `logging.silent` (none), `logging.quiet` (error messages only) and `logging.verbose` (all). With the new logging configuration, set the minimum required {kibana-ref}/logging-service.html#log-level[log level].
122
122
123
123
*Impact:* To restore the previous behavior, in `kibana.yml` specify `logging.root.level`:
124
124
[source,yaml]
@@ -175,7 +175,7 @@ logging:
175
175
==== Configure log rotation with the rolling-file appender
176
176
*Details:* Previously log rotation would be enabled when `logging.rotate.enabled` was true.
177
177
178
-
*Impact:* To restore the previous behavior, in `kibana.yml` use the `rolling-file` appender.
178
+
*Impact:* To restore the previous behavior, in `kibana.yml` use the {kibana-ref}/logging-service.html#rolling-file-appender[`rolling-file`] appender.
Copy file name to clipboardExpand all lines: docs/setup/settings.asciidoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -281,7 +281,7 @@ To reload the logging settings, send a SIGHUP signal to {kib}.
281
281
|===
282
282
283
283
|[[logging-root]] `logging.root:`
284
-
| The `root` logger has a dedicated configuration node since this context name is special and is pre-configured for logging by default.
284
+
| The {kibana-ref}/logging-service.html#logging-service[`root` logger] has a dedicated configuration node since this context name is special and is pre-configured for logging by default.
285
285
// TODO: add link to the advanced logging documentation.
@@ -303,7 +303,7 @@ To reload the logging settings, send a SIGHUP signal to {kib}.
303
303
| Specific appender format to apply for a particular logger context.
304
304
305
305
| `logging.appenders:`
306
-
| Define how and where log messages are displayed (eg. *stdout* or console) and stored (eg. file on the disk).
306
+
| {kibana-ref}/logging-service.html#logging-appenders[Appenders] define how and where log messages are displayed (eg. *stdout* or console) and stored (eg. file on the disk).
307
307
// TODO: add link to the advanced logging documentation.
0 commit comments