Hi sieutruc
there are two ways to change the logo. first one is quick and dirty, because each Splunk update will replace it:
simply copy your logo as
$SPLUNK_HOME/share/splunk/search_mrsparkle/exposed/img/skins/default/logo-mrsparkle.png
and restart splunk after this.
the better way without restart and make it persistent over updates, is to place your logo into
$SPLUNK_HOME/share/splunk/search_mrsparkle/exposed/img/skins/default
open $SPLUNK_HOME/share/splunk/search_mrsparkle/exposed/css/login.css in any preferred editor and change it to grab your newly copied logo
#splunkLogo {
width:368px;
height:200px;
padding: 0;
float:left;
background: #fff url(/static/img/skins/default/mycompanylogo.png) no-repeat 65px 60px;
}
after that go to your Splunk login page, reload it and you will see your own logo.
for the text which you want to change, you can check the docs about AccountBar http://docs.splunk.com/Documentation/Splunk/4.3.4/Developer/ModuleReference#AccountBar and how it could be changed.
cheers,
MuS
update:
the text label can be set in yourApp/default/app.conf:
[ui]
label = what ever text you want
the icon inside your app, can be either change by overwriting the original logo in yourApp/appserver/static/ (not recommended) or by creating your own css in your app. read more here http://docs.splunk.com/Documentation/Splunk/4.3.4/Developer/UseCSS#Configure_CSS_for_an_app
... View more