Dashboards & Visualizations

How to save the results of a search into a token?

Marco_Develops
Path Finder

I'm trying to save the results of my search in a token so I can reference it in another visualization.  I've read other post and people are using the <done> tags to solve this issue.

 

Below is my code

 

 

<row>
    <panel>
      <single>
        <search>
          <query>index = * | stats count as c</query>
          <earliest>$time.earliest$</earliest>
          <latest>$time.latest$</latest>
          <done> 
            <set token="results" >$row.c$</set>
          </done>
        </search>
        <option name="drilldown">none</option>
      </single>
    </panel>
  </row>

 

 

 

ideally I would like to reference the "Results" token in other searches. Any help is appreciated. 

-Marco 

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

somesoni2
Revered Legend

Change 

<set token="results" >$row.c$</set>

with 

<set token="results" >$result.c$</set>

 

The $row.xxx works when you drilldown using a click.

View solution in original post

somesoni2
Revered Legend

Change 

<set token="results" >$row.c$</set>

with 

<set token="results" >$result.c$</set>

 

The $row.xxx works when you drilldown using a click.

richgalloway
SplunkTrust
SplunkTrust

How is that code failing you?  How are you trying to reference the $results$ token?

---
If this reply helps you, Karma would be appreciated.
0 Karma

Marco_Develops
Path Finder

 @somesoni2  Switching from row to results worked as needed.

Thank you,

Marco

 

0 Karma
Get Updates on the Splunk Community!

Splunk Smartness with Brandon Sternfield | Episode 3

Hello and welcome to another episode of "Splunk Smartness," the interview series where we explore the power of ...

Monitoring Postgres with OpenTelemetry

Behind every business-critical application, you’ll find databases. These behind-the-scenes stores power ...

Mastering Synthetic Browser Testing: Pro Tips to Keep Your Web App Running Smoothly

To start, if you're new to synthetic monitoring, I recommend exploring this synthetic monitoring overview. In ...