I have a search command which pipes to "| head limit=10". But I want to let the user decide if they see 10 or 20 or all the events returned.
One way that I could think of was by adding a drop-down with specific values such as 10, 20 and 999,999,999(very large number) and by passing that value as the limit of the head command. I wonder if there's a better way to do this though.
... View more