This documentation contains work-in-progress information for future Elastic Stack and Cloud releases. Use the version selector to view supported release docs. It also contains some Elastic Cloud serverless information. Check out our serverless docs for more details.
Cli configuration
editCli configuration
editLogging configuration via CLI
editAs is the case for any of Kibana’s config settings, you can specify your logging configuration via the CLI. For convenience, the --verbose
and --silent
flags exist as shortcuts and will continue to be supported beyond v7.
If you wish to override these flags, you can always do so by passing your preferred logging configuration directly to the CLI. For example, with the following configuration:
logging: appenders: custom: type: console layout: type: pattern pattern: "[%date][%level] %message" root: level: warn appenders: [custom]
you can override the root logging level with:
legacy logging | Kibana Platform logging | cli shortcuts |
---|---|---|
--verbose |
--logging.root.level=debug |
--verbose |
--silent |
--logging.root.level=off |
--silent |