The table's "previous" button works except when I'm going from Page 2 to Page 1 of the results. When I clicked "previous" the results stayed the same.
The table's source is as follows:
source=<<source>> | stats count by strategy_name | sort -num(count) | table strategy_name, count | rename strategy_name as "Alert Type", count as Count
Hi @domaquino,
please, try to modify your search in this way:
source=<<source>>
| stats count by strategy_name
| sort -count
| rename strategy_name as "Alert Type" count as Count
In addition I hint to use always the index in the main search: you'll have a quicker search, because without index the search runs on all default indexes, instead only the one you need.
Ciao.
Giuseppe