Trying to use time tokens in dashboard studio under sub search, $time.earliest$ and $time.latest$ works for Presets - Today & Yesterday. But doesn't if date range is selected. Can someone kindly help. | inputlookup daily_distinct_count.csv | rename avg_dc_count as avg_val | search Page="Application" | eval _time=relative_time(now(), "-1d@d"), value=avg_val, Page="Application" | append [ search index="143576" earliest=$token.earliest$ latest=$token.latest$ | eval Page=case( match(URI, "Auth"), "Application", true(), "UNKNOWN" ) | where Page="Application" | stats dc(user) as value | eval _time=now(), Page="Application" ] | table _time Page value | timechart span=1d latest(value) as value by Page
... View more