kibana/packages/kbn-logging
Spencer 4385ac4d83
[eslint] enable type-specific lint rules (#114184)
* [eslint] enable type-specific lint rules

* autofix violations

* duplicate eslint-disable to new export statement

Co-authored-by: spalger <spalger@users.noreply.github.com>
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
2021-11-03 16:56:17 -06:00
..
mocks chore(NA): moving @kbn/logging to babel transpiler (#108702) 2021-08-20 11:54:46 +01:00
src [eslint] enable type-specific lint rules (#114184) 2021-11-03 16:56:17 -06:00
BUILD.bazel chore(NA): moving @kbn/logging to babel transpiler (#108702) 2021-08-20 11:54:46 +01:00
jest.config.js
package.json chore(NA): moving @kbn/logging to babel transpiler (#108702) 2021-08-20 11:54:46 +01:00
README.md
tsconfig.json chore(NA): moving @kbn/logging to babel transpiler (#108702) 2021-08-20 11:54:46 +01:00

kbn-logging

Base types for the kibana platform logging system.

Note that this package currently only contains logging types. The only concrete implementation is still in core for now.

The way logging works in Kibana is inspired by log4j 2 logging framework used by Elasticsearch. The main idea is to have consistent logging behaviour (configuration, log format etc.) across the entire Elastic Stack where possible.

Loggers, Appenders and Layouts

Kibana logging system has three main components: loggers, appenders and layouts. These components allow us to log messages according to message type and level, and to control how these messages are formatted and where the final logs will be displayed or stored.

Loggers define what logging settings should be applied at the particular context.

Appenders define where log messages are displayed (eg. stdout or console) and stored (eg. file on the disk).

Layouts define how log messages are formatted and what type of information they include.

Logger hierarchy

Every logger has its unique name or context that follows hierarchical naming rule. The logger is considered to be an ancestor of another logger if its name followed by a . is a prefix of the descendant logger name. For example logger with a.b context is an ancestor of logger with a.b.c context. All top-level loggers are descendants of special logger with root context that resides at the top of the logger hierarchy. This logger always exists and fully configured.

Developer can configure log level and appenders that should be used within particular context. If logger configuration specifies only log level then appenders configuration will be inherited from the ancestor logger.

Note: in the current implementation log messages are only forwarded to appenders configured for a particular logger context or to appenders of the closest ancestor if current logger doesn't have any appenders configured. That means that we don't support so called appender additivity when log messages are forwarded to every distinct appender within ancestor chain including root.

Log level

Currently we support the following log levels: all, fatal, error, warn, info, debug, trace, off. Levels are ordered, so all > fatal > error > warn > info > debug > trace > off. A log record is being logged by the logger if its level is higher than or equal to the level of its logger. Otherwise, the log record is ignored.

The all and off levels can be used only in configuration and are just handy shortcuts that allow developer to log every log record or disable logging entirely for the specific context.

Layouts

Every appender should know exactly how to format log messages before they are written to the console or file on the disk. This behaviour is controlled by the layouts and configured through appender.layout configuration property for every custom appender. Currently we don't define any default layout for the custom appenders, so one should always make the choice explicitly.