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!

Exciting News: The AppDynamics Community Joins Splunk!

Hello Splunkers,   I’d like to introduce myself—I’m Ryan, the former AppDynamics Community Manager, and I’m ...

The All New Performance Insights for Splunk

Splunk gives you amazing tools to analyze system data and make business-critical decisions, react to issues, ...

Good Sourcetype Naming

When it comes to getting data in, one of the earliest decisions made is what to use as a sourcetype. Often, ...