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!

Data Management Digest – December 2025

Welcome to the December edition of Data Management Digest! As we continue our journey of data innovation, the ...

Index This | What is broken 80% of the time by February?

December 2025 Edition   Hayyy Splunk Education Enthusiasts and the Eternally Curious!    We’re back with this ...

Unlock Faster Time-to-Value on Edge and Ingest Processor with New SPL2 Pipeline ...

Hello Splunk Community,   We're thrilled to share an exciting update that will help you manage your data more ...