Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/core/server/logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- [Configuration](#configuration)
- [Usage](#usage)
- [Logging config migration](#logging-config-migration)
- [Logging configuration via CLI](#logging-configuration-via-CLI)
- [Log record format changes](#log-record-format-changes)

The way logging works in Kibana is inspired by `log4j 2` logging framework used by [Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html#logging).
Expand Down Expand Up @@ -527,6 +528,16 @@ and you can enable them by adjusting the minimum required [logging level](#log-l
#### logging.filter
TBD

### Logging configuration via CLI

| legacy logging | Kibana Platform logging|
|-|-|
|--verbose| --logging.root.level=debug --logging.root.appenders[0]=default --logging.root.appenders[1]=console|
|--quiet| --logging.root.level=error --logging.root.appenders[0]=default --logging.root.appenders[1]=console|
|--silent| --logging.root.level=off|

*note that you have to pass the `default` appender until the legacy logging system is removed in v8.0

### Log record format changes

| Parameter | Platform log record in **pattern** format | Legacy Platform log record **text** format |
Expand Down