Splunk Dev

Inside drilldown tags - how to apply transformative operations on set tags - <set>

GaryZ
Path Finder

Can you apply transformative operations inside set tags from drilldown tags?

ex:

<drilldown>
<set token="form.builds_tk">$click.value$</set>
</drilldown>

 

Would like to take the value captured from click value, split it (or regex), then use the first value.

ex:

<drilldown>
<set token="form.builds_tk">mvindex(split("$click.value$", "-"), 1)</set>
</drilldown>

 

Labels (5)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Rather than using set use eval - try it like this

<drilldown>
 <eval token="form.builds_tk">mvindex(split("$click.value$", "-"), 1)</eval>
</drilldown>

View solution in original post

GaryZ
Path Finder

Awesome.... That worked. 

0 Karma

bowesmana
SplunkTrust
SplunkTrust

You can do some great stuff with eval in drilldown, but be mindful that there are some bugs with using more than one multivalue eval statements, e.g. this one fails

<eval token="k1">mvindex($row.key$, mvfind($row.name$, $click.value2$))</eval>

as it fails trying to call mvindex with the result of the mvfind.

Note also that the first element is element 0, not 1 if that was your intention.

0 Karma

GaryZ
Path Finder

@bowesmana You are correct.  I did have to change my index to point at 0 instead of 1

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Rather than using set use eval - try it like this

<drilldown>
 <eval token="form.builds_tk">mvindex(split("$click.value$", "-"), 1)</eval>
</drilldown>
Get Updates on the Splunk Community!

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 ...

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...