Hi @pb2, you could create a dropdown like this: <input type="dropdown" token="my_token">
<label>Values</label>
<choice value="| head 5">Latest 5 Numbers</choice>
<choice value="| head 10">Latest 10 Numbers</choice>
<choice value="| head 15">Latest 15 Numbers</choice>
<default>| head 5</default>
<search>
<query>
</query>
<earliest>0</earliest>
<latest></latest>
</search>
</input> Then run a search like this (obviously to adapt to your need): your_search
| stats count BY host
| sort -count
$my_token$ Ciao. Giuseppe
... View more