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!

Everything Community at .conf24!

You may have seen mention of the .conf Community Zone 'round these parts and found yourself wondering what ...

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...