Dashboards & Visualizations

Dynamic | stats count

MrJohn230
Path Finder

I'm not exactly sure what I need here. 

I have a multiselect:

 

 

 

 <input type="multiselect" token="t_resource">
      <label>Resource</label>
      <choice value="*">All</choice>
      <prefix>IN(</prefix>
      <suffix>)</suffix>
      <delimiter>,</delimiter>
      <fieldForLabel>resource</fieldForLabel>
      <fieldForValue>resource</fieldForValue>
      <search base="base_search">
        <query>| dedup resource | table resource</query>

 

 

 

Table visual search:

 

 

| search status_code $t_code$ resource $t_resource$ HourBucket = $t_hour$
| bin _time span=1h
| stats count(status_code) as StatusCodeCount by _time, status_code, resource
| eventstats sum(StatusCodeCount) as TotalCount by _time, resource
| eval PercentageTotalCount = round((StatusCodeCount / TotalCount) * 100, 2)
| eval 200Flag = case(
    status_code=200 AND PercentageTotalCount < 89, "Red",
    status_code=200 AND PercentageTotalCount < 94, "Yellow",
    status_code=200 AND PercentageTotalCount <= 100, "Green",
    1=1, null)
| eval HourBucket = strftime(_time, "%H")
| table _time, HourBucket, resource, status_code, StatusCodeCount, PercentageTotalCount, 200Flag

 

 

I also have a table, sample data below:

_timeresource
1/10/2024Red
1/10/2024Green

 

When the user select the multiselect dropdown and selects "ALL" (which is the default) the resource column should aggregate all the resource and display the resource as "All". But If the user select individual resources, such as "Red" and "Green" these should be shown and broken down by resource. 

 

Labels (2)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

You could do a simple

| eval resource=if($t_resource|s$="IN(*)", "All", resource)

which would make all resources be "All" if the only selected dropdown is "All", so the split by resource only creates a single split, of you could add a change element to the input that sets the split by clause, e.g. something like

<change>
  <eval token="split_by_resouce">if($t_resource|s$="IN(*)", "", "resource")</eval>
</change>

and then change your stats (and eventstats) command to

| stats count(status_code) as StatusCodeCount by _time, status_code, $split_by_resource$

You would also need a default for that token, so need an init block, i.e.

<init>
  <set token="split_by_resource"></set>
<init>

and then you would also need to create a 'resource' field to be "All" for the final table display if you want "All" to appear. The first option requires the least fiddling around

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!

What’s New in Splunk AI: Volume 02

Welcome to the second edition of “What’s New in Splunk AI” where we look at the latest and greatest updates, ...

Splunk App Dev Quarterly Roundup: AI, Agents, and Innovation!

Another quarter, another wave of innovation. From complex integrations to pushing the limits ...

Value Insights: Now Generally Available in the CMC

Organizations are under pressure to move faster, control cost, expand AI adoption, and prove value with more ...