Hello Splunkers I have a below query, that am trying to get a count by field values, I am working on creating a dynamic dashboard that I have the below three fields as three dropdown inputs. So, How can I make the token dynamic here, like when I choose only one value from one of the three dropdown inputs that value should populate on the stats command token. Thanks in advance!
index=<> sourcetype=<>
| search Type=$Token$
| search User=$Token$
| search Site=$Token$
| stats count by $Token$
... View more