kibana/x-pack/plugins/banners
2022-10-28 14:06:46 -05:00
..
common [eslint] enable type-specific lint rules (#114184) 2021-11-03 16:56:17 -06:00
public Fix banner not being displayed on login page (#140688) 2022-09-20 00:39:53 -07:00
server [Archive Migration] x-pack-banners/multispace (#135783) 2022-09-27 12:03:01 +01:00
jest.config.js [jest] update config files to get coverage per plugin (#111299) 2021-09-09 08:14:56 +02:00
kibana.json Fix banner not being displayed on login page (#140688) 2022-09-20 00:39:53 -07:00
README.md add per space configuration to custom header banner (#94449) 2021-03-31 10:57:06 +02:00
tsconfig.json [auto] migrate existing plugin/package configs 2022-10-28 14:06:46 -05:00

Kibana banners plugin

Allow to add a header banner that will be displayed on every page of the Kibana application

Configuration

The plugin's configuration prefix is xpack.banners

The options are

  • placement

The placement of the banner. The allowed values are:

  • disabled - The banner will be disabled

  • top - The banner will be displayed in the header

  • textContent

The text content that will be displayed inside the banner, either plain text or markdown

  • textColor

The color of the banner's text. Must be a valid hex color

  • backgroundColor

The color for the banner's background. Must be a valid hex color

Configuration example

kibana.yml

xpack.banners:
  placement: 'top'
  textContent: 'Production environment - Proceed with **special levels** of caution'
  textColor: '#FF0000'
  backgroundColor: '#CC2211'