Hi,
I am using ELK current version for logging solution for my project and got stuck with one requirement -
I need to hide "Settings" tab / menu item from Kibana UI. I read online documentation to find if we have some configuration option but could not found it. I wanted to hide it becasue it should not be visisble to users who just wanted to see logs and should only be available for admin users. Can someone help me out to hide this particular tab.
Shield seems not an option for me as it is available for 30 day trial.
I am also open to make a code change to hide it incase there is no other option availble, and revert it back when needed which will be very very rare in my case.
Tried to put ng-if tag in KIBANA_HOME/src/ui/public/chrome/chrome.html like below and restard Kibana but it is not getting reflected.
li ng-repeat="tab in chrome.getTabs()" ng-if="tab.title!='Settings'" ng-class="{ active: tab.active }"
Thanks in advance.