Dashboards & Visualizations

How to pass the login username in a drilldown link to an external website?

sjlin
Explorer

Hi all,

I want to pass the login username in a drilldown link to an external website.
How can I achieve that?

Any help is appreciated.

Tags (2)
0 Karma

jeffland
SplunkTrust
SplunkTrust

You can fetch the currently logged in user in .js with

var service = mvc.createService({owner: "nobody"});
service.currentUser(function(err, user) {
    userName = user.properties().username;
});

and place userName in a token from there. You could also run a search such as

| rest /services/authentication/current-context/context | search username!="splunk-system-user" | table username

and work with the result (which should be the current user), but AFAIK you still need to do this in javascript as there is no way to directly place a search result into a token (imagine a search such as index=_internal, how is that supposed to fit into a token?).

0 Karma

sjlin
Explorer

Thanks for your advice very much.
But I don't know how to add a js to my dashboard...

0 Karma

jeffland
SplunkTrust
SplunkTrust

You place the .js file in

%SPLUNK_BASE/etc/apps/%appname%/appserver/static/

and reference it in your dashboard with

<dashboard script="your_script.js">
  ...
0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...