Thanks! I modified this search to avoid the error about not being able to access the REST call per https://answers.splunk.com/answers/712773/error-on-overview-pane-failed-to-fetch-rest-endpoi.html
| rest splunk_server=local /services/saved/searches/mysearch/history
| search isDone=1
| stats max(published) as search_date
| eval search_date=strftime(strptime(search_date,"%Y-%m-%dT%H:%M:%S"),"%Y-%m-%d %H:%M:%S")
| rename search_date AS "Search Date"
| table "Search Date"
This works.
@aromanauskas BTW if you convert to answer I can accept this answer. Thanks.
... View more