I would like to add a custom logout link to the Splunkbar User Menu (see image). I am using SSO which causes the default "Logout" option to be hidden. I would like to add a custom "Logout" option pointing to my SSO provider logout page. I have tried to modify the file below, however, my modifications do not seem to take effect, even after restarting Splunk.
<drive>:\Program Files\Splunk\share\splunk\search_mrsparkle\exposed\js\views\shared\splunkbar\UserMenu.html
I have modified the file to look like this:
<a href="#" class="dropdown-toggle"><span class="realname"><%-realName%></span><b class="caret"></b></a>
<div class="dropdown-menu dropdown-menu-narrow global-user-menu">
<div class="arrow"></div>
<ul>
<li><a href="<%-accountLink%>" class="edit"><%- _("Edit Account").t() %></a></li>
<li><a class="logout" href="/vdesk/hangup.php3">Logout</a></li>
</ul>
</div>
... View more