Splunk Search

Can I dynamically filter on the table?

HattrickNZ
Motivator

Let's say I create the following table from my search index= x .... | stats sum(x) by y

y        sum(x)
Counter1  907
Counter2  906
Counter3  904
Counter41 91
Counter42 56
...
CounterN  95

Can I filter the table so it is dynamic so that only some rows are shown? For example, if I just wanted to show the 2 rows

Counter41 91
Counter42 56 

Can I have a text field that can act as my filter where I would type something like "Counter4"

My text field would look something like this:

<input type="text" token="span_gran">
  <label>Specify text to filter table</label>
  <default></default>
</input>

But, firstly, can I dynamically filter on the table and secondly, how do I do this?

0 Karma

niketn
Legend

@HattrickNZ, yes you can filter with your text box.

Following example of Textbox input does two things:
1) When pattern is changed in Text Box, filter token is supplied to Table(without Submit button). You can change this if your use case requires Submit button through searchWhenChanged

2) Default pattern is set to asterix ( * ), so that no filter is applied

 <input type="text" token="span_gran"  searchWhenChanged="true">
   <label>Pattern to Filter</label>
   <default>*</default>
 </input>

Then you can use Text box token in your Search

<YourBaseSearch>
| stats sum(x) by y
| search y="$span_gran$"
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

niketn
Legend

@HattrickNZ, were you able to try out the example. Please let us know if you still have issues.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

HattrickNZ
Motivator
0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

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 ...