Splunk Search

How to display Total Count inside a Chart

virgilg
Explorer

Hi,

I have a search like this:

sourcetype=syslog AND host="xxx.xxx.xxx.xxx" AND mpkg | stats count by username, operation | sort count

This gives me a nice graph, which I've added to a Dashboard:
alt text

However, I would love to get a total count of the Downloads operation be displayed inside the graph, like a Legend of sorts, which will show total downloads were e.g. "157 events" (the count of matches as displayed by the Search view).

How can I do that?

Thanks,
Virgil

1 Solution

somesoni2
Revered Legend

If you're using Splunk 6.3+ version, they try something like this (see the token setting in <done> tag and usage in panel title)

<form>
  ......
  <row>
    <panel>
      <table>
        <title>Total Results: $resultcount$</title>
        <search>
          <query>sourcetype=syslog AND host="xxx.xxx.xxx.xxx" AND mpkg | stats count by username, operation | sort count</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        <done>
          <eval token="resultcount">$job.resultCount$</eval>
        </done>
        </search>
      ........
      </table>
    </panel>
  </row>
.......
</form>

View solution in original post

somesoni2
Revered Legend

If you're using Splunk 6.3+ version, they try something like this (see the token setting in <done> tag and usage in panel title)

<form>
  ......
  <row>
    <panel>
      <table>
        <title>Total Results: $resultcount$</title>
        <search>
          <query>sourcetype=syslog AND host="xxx.xxx.xxx.xxx" AND mpkg | stats count by username, operation | sort count</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        <done>
          <eval token="resultcount">$job.resultCount$</eval>
        </done>
        </search>
      ........
      </table>
    </panel>
  </row>
.......
</form>

vravisplunker
Explorer

This idea worked for me, thanks somesoni2

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...