Dashboards & Visualizations

How to set $click.name$ token if it has been changed?

ollie920049
Path Finder

Hi,

I have a bar graph where drilldown tokens are set:

<drilldown>
     <set token="wl_user">$click.value$</set>
     <set token="wl_zone">$click.name2$</set>
</drilldown>

This works without issue when a user clicks on the 'bar' elements. However, if a user clicks on the legend, the $click.name2$ value is successfully set, but the $wl_user$ token is not, as $click.value$ is (rightly) null.

The problem is that when I initialize this page, I programmatically set these tokens to * to enable some drilldown searching.

I guess my question is - can I conditionally set the $wl_user$ token if $click.name$ has a value?

Thanks,
Ollie

Tags (2)
0 Karma
1 Solution

somesoni2
Revered Legend

Which Splunk version you're in? If you're in 6.3+, then you've 'eval' tag available as child for drilldown tag using which you can conditionally set your tokens see this.

http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML#eval

View solution in original post

somesoni2
Revered Legend

Which Splunk version you're in? If you're in 6.3+, then you've 'eval' tag available as child for drilldown tag using which you can conditionally set your tokens see this.

http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML#eval

ollie920049
Path Finder

As @somesoni2 mentioned this was achievable with eval tag in XML (as of Splunk 6.3).

Code looked something like the following:

<drilldown>
    <eval token='wl_user'>if(isnull('click.value'), "*", 'click.value')</eval>
</drilldown>

Make sure you note the difference between an evaluated variable contained within a single quote, and a string literal contained within a double quote ('*' will not work, has to be "*").

0 Karma

ollie920049
Path Finder

Yep - Using 6.3. Did spot the 'eval' tag, but haven't been able to form a conditional within the XML that would evaluate to '$click.value$' does not exist?

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...