Dashboards & Visualizations

Pass stats count value from a search command to a token, and display tokens in an HTML panel

dojiepreji
Path Finder

Hello all,

Is there a way to pass the number derived from stats count to a token?

I need to make an HTML panel consisting of text like so:

Incident
New VS. Resolved
o   42 new incidents
o   54 resolved incidents (all P3 and P4s)

Values 42 and 54 come from search queries like so:

For 42:
| search status="*"
| stats count(ticket) as New

For 54:
| search status="Resolved"
| stats count(ticket) as Resolved

Is there a way to pass the values of New and Resolved from the search queries to tokens in the dashboard so I can display it inside my HTML panel?

0 Karma

vnravikumar
Champion

Hi @dojiepreji

Try like

       <search>
          <query>your query......| search status="*"
                | stats count(ticket) as New</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <done>
            <condition>
              <set token="new_incident">$result.New$</set>
            </condition>
          </done>
        </search>
0 Karma

vnravikumar
Champion

@dojiepreji, have you tried?

0 Karma

vnravikumar
Champion

Any update?

0 Karma

woodcock
Esteemed Legend
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...