Dashboards & Visualizations

Set multiple tokens on a single Table view

siddhartha_dada
New Member

Hello

I am trying to see how we can set two tokens on a table below. What ever I try, only seem to be able to get one value at a time. Is it possible to allow users to click on two values in a table and once they click on Submit, pass those tokens over for downstream searches?

Group1
A
B
C
D

Setting the drilldown as

   <drilldown>
          <set token="GAP1">$click.value$</set>
          <set token="GAP2">$click.value1$</set>
   </drilldown>

Want to write the HTML as

 Your Picks: $click.value$, $click.value1$ -- Tried this and it always should a single value in both. 
0 Karma

DavidHourani
Super Champion

Make sure you're leveraging the tokens you created 🙂

You defined GAP1 and GAP2 so use them in your HTML. So is should be like this :

  Your Picks: $GAP1$, $GAP2$ 
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@siddhartha.dadana

You have to use GAP1 and GAP2 in HTML panel.

See below example.

<dashboard>
<row>
    <panel>
      <title>Sample Table</title>
      <table>
        <title>A</title>
        <search>
          <query>| makeresults count=10| eval number=1 | accum number</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="count">10</option>
        <option name="drilldown">cell</option>
        <option name="refresh.display">progressbar</option>
        <drilldown>
          <set token="GAP1">$click.value$</set>
          <set token="GAP2">$click.value2$</set>
        </drilldown>
      </table>
    </panel>
    <panel>
      <title>HTML Panel</title>
      <html>
        click_value : $GAP1$ <br/>
        click_value2 : $GAP2$
      </html>
    </panel>
  </row>
</dashboard>
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...