I am creating a Dashboard from Splunk log
In this dashboard, I want to want to add the filter to each column. Just by writing into filter text box, data need to be filtered. something like this.
I have also asked same question on stackoverflow.
https://stackoverflow.com/questions/43934866/how-to-add-filter-specific-to-each-column-in-splunk-das... text]1
Like this:
| multisearch
[ |makeresults | eval _time = " Search Time", message = " Search Message" ]
[ YOUR ORIGINAL SEARCH HERE ]
If you need it to be tokenized, then like this:
| multisearch
[ |makeresults | eval _time = " " . $time_token$, message = " " . $message_token$ ]
[ YOUR ORIGINAL SEARCH HERE ]
Look here too:
http://docs.splunk.com/Documentation/Splunk/6.6.0/Viz/Aboutthismanual
input at a dashboard are equal filter 😉