I ran into this same issue exactly and troubleshot for hours. What ended up solving it for us was looking at the source html of the dashboard we were trying to retrieve via email. When opening up the html, we noticed the following stanza: <!-- Dummy search to pull selected time range earliest and latest date/time --> <search> <query>| makeresults</query> <earliest>-7d@w0</earliest> <latest>@w0</latest> <done> <eval token="tokTime">$job.earliestTime$</eval> <eval token="tokEarliestTime">strftime(strptime($job.earliestTime$,"%Y/%m/%dT%H:%M:%S.%3N %p"),"%m/%d/%y %I:%M:%S.%3N %p")</eval> <eval We removed this and it worked just fine. Hope this helps.
... View more