Dashboards & Visualizations

How to extract value from token in init section

kotak86
Explorer

Hello I am trying to get substr in init but it looks like it's not working.

the problem is $data_type$ value is "(data_type=state)" or "(data_type=country)" or "(data_type=state OR country)"

I need a way to create another token like cur_data which can get the substr of $data_type$ from idx 8 -12

I tried but substr in inti did not work...
<eval token="cur_data">substr($data_type$, 8,12)</eval>
data_type field is part of fieldset and taking from user from dashboard filter

 

 

 

<init>
<set token="STATE_DATA">STATE_1, STATE_2, STATE_3, STATE_4</set>
<set token="COUNTRY_DATA">COUNTRY_1, COUNTRY_2, COUNTRY_3, COUNTRY_4 </set>
<eval token="cur_data">substr($data_type$, 8,12)</eval>
<eval token="VCS_TYPES">if($cur_data$='state', $STATE_DATA$,  $COUNTRY_DATA$)</eval>

</init>

 

 

Labels (4)
Tags (1)
0 Karma
1 Solution

niketn
Legend

@kotak86 since you are trying to use a token in the init section, which does not seem to be set during dashboard initialization, your dependent token is not getting set. Try to use an independent search instead, which also runs on Dashboard load as well as each time source token changes,

  <search>
    <query>| makeresults
    | fields - _time
    | eval cur_data=substr($data_type|s$, 8,12)</query>
    <done>
      <set token="cur_data">$result.cur_data$</set>
    </done>
  </search>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

@kotak86 since you are trying to use a token in the init section, which does not seem to be set during dashboard initialization, your dependent token is not getting set. Try to use an independent search instead, which also runs on Dashboard load as well as each time source token changes,

  <search>
    <query>| makeresults
    | fields - _time
    | eval cur_data=substr($data_type|s$, 8,12)</query>
    <done>
      <set token="cur_data">$result.cur_data$</set>
    </done>
  </search>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...