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!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...