Dashboards & Visualizations

Single Value Field Count

bchristensen
New Member

This should be an easy one for you guys.

Basically, I'm trying to display the total number of hosts associated with an event into a single value:

<single>
  <searchString>eventtype="sp.*" | stats count(tag::host) | rangemap field=count low=1-1000000 default=low</searchString>
  <title># Of Active Customers</title>
  <earliestTime>-4h</earliestTime>
  <option name="afterLabel">Customers</option>
  <option name="linkFields">result,beforeLabel</option>
  <option name="classField">range</option>

Driving me nuts! I keep coming back with "N/A Customers" displayed in the button.

Tags (1)
0 Karma

southeringtonp
Motivator

Looks like your field names aren't going to match coming out of stats. Also, the example search is going to give you the number of host tags rather than of the number of the hosts -- is that what you intended?

Try changing:

| stats count(tag::host)

to (number of host tags):

| stats count(tag::host) as count

or (number of hosts):

| stats dc(host) as count
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...