I'd like to change the loading logo in Kibana

my elk version

  • 7.13.0

I tried changing the logo provided by elastic, but it doesn't work.

Open file
$ sudo nano /usr/share/kibana/src/core/server/rendering/views/template.js

Look for code string:
const logo = _react.default.createElement("svg", {…

Replace this with a base64 or SVG version of your custom logo. I used a base64 image.

Result:
const logo = _react.default.createElement("img", {src:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAqkAAAK … 5CYII=',width:'100px'});

Locate code block and replace message

}, i18n('core.ui.welcomeMessage', {
defaultMessage: 'Loading Elastic'

Result:
}, i18n('core.ui.welcomeMessage', {
defaultMessage: 'Loading custom_text'

The commands above were executed in order.

sudo nano /usr/share/kibana/src/core/server/rendering/views/template.js

const logo = _react.default.createElement("svg", {… -->

const logo = _react.default.createElement("img", {src:'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAqkAAAK … 5CYII=',width:'100px'});

enter image description here

The guide tells me to replace the code, but I can't see the code.

Please tell me specifically.

Again, my kibana version 7.13.0.

@warkolm
I can't get information because you closed all the questions.

The question I'm posting now is my only open question.

Stop closing the questions.

@111480 please stop asking the same thing over and over in new topics. If you continue to do this we will have to restrict your posting abilities.

I can't write back because I closed all the questions. Please do not close the question.

You can answer questions only when they are open.

I've reopened How to login screen change in kibana 7.13.0?

1 Like