kibana/config
Pierre Gayvallet 1dc0076ca8
[browser logging] allow to configure root level (#176397)
## Summary

Part of https://github.com/elastic/kibana/issues/144276

- Introduce the concept of browser-side logging configuration, via a
`logging.browser` config prefix
- Allow to configure the log level for the root browser logger via
`logging.browser.root.level`
- Set the default level to `info` for both dev and production mode
(consistent with server-side logging)

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2024-02-12 05:26:57 -07:00
..
kibana.yml [browser logging] allow to configure root level (#176397) 2024-02-12 05:26:57 -07:00
node.options [node] Enable openssl legacy provider (#163190) 2023-08-30 11:51:10 -07:00
README.md Fix config stacking order (#158827) 2023-06-05 15:15:07 +02:00
serverless.es.yml console: introduce config to enable/disable embedded console (#175736) 2024-01-30 14:58:08 -06:00
serverless.oblt.yml [Fleet] Add the uptime capability to observability projects (#176285) 2024-02-07 00:39:45 +01:00
serverless.security.yml console: introduce config to enable/disable embedded console (#175736) 2024-01-30 14:58:08 -06:00
serverless.yml Make request timeout of updateByQuery in TM configurable (#176461) 2024-02-09 14:36:39 +01:00

as work on serverless picks up we will add config values to these files that define how Kibana will run in "serverless" modes. To start Kibana locally with this configuration, pass --serverless={mode} or run yarn serverless-{mode}

valid modes are currently: es, oblt, and security

configuration is applied in the following order, later values override

  1. serverless.yml (serverless configs go first)
  2. serverless.{mode}.yml (serverless configs go first)
  3. base config, in this preference order:
  • my-config.yml(s) (set by --config)
  • env-config.yml (described by env.KBN_CONFIG_PATHS)
  • kibana.yml (default @ env.KBN_PATH_CONF/kibana.yml)
  1. kibana.dev.yml
  2. serverless.dev.yml
  3. serverless.{mode}.dev.yml