I have a search on my dashboard that takes ~20 seconds to complete. This search is a member of a chain. base: index=yum sourcetype=woohoo earliest=-12h@h
| table device_name field1 field2 field3 Chained search: | search field1="$field1_tok$" AND field2="$field2_tok$" Panel: | stats sum(field3) as field3 by device_name
| sort - field3
| table device_name field3
| head 10 Everything works fine but when I change tokens the panel loads a cached version of the table with incorrect values. 5 to 10 seconds later the panel updates with the correct values but without any indication. So, Is there a setting to turn off these cached results?
... View more