How to turn off autopause
This documentation does not apply to the most recent version of Splunk. Click here for the latest version.
How to turn off autopause
Searches in views will pause, automatically, if all of the following three conditions are met:
- the view contains a JobStatus module (like flashtimeline, charting).
- the view has configured JobStatus with a valid autoPauseInterval parameter (defaults to 30 seconds).
- the URI of the view must contain an 'auto_pause=true' parameter, for example:
http://localhost:8000/app/search/flashtimeline?auto_pause=true&q=search foo bar
The best way to build a URI with auto_pause=true is to send searches to this view using the ViewRedirector in another view. Use ViewRedirector module to insert the URI params in your redirect. For example:
<module name="ViewRedirector"> <param name="viewTarget">flashtimeline</param> <param name="uriParam.auto_pause">true</param> </module>
Specifically, set <param name="uriParam.auto_pause">true</param>.
This documentation applies to the following versions of Splunk: 4.1 , 4.1.1 , 4.1.2 , 4.1.3 , 4.1.4 , 4.1.5 , 4.1.6 , 4.1.7 , 4.1.8 View the Article History for its revisions.