I am trying to use the token passed through the time input in a dashboard to a search query. In this specific example, I am trying to do the following
|eval date=strptime($timepicker.latest$,"%H:%M")
If I select the default time as 'today' or 'yesterday', the value for timepicker is sent as @d and the eval command cannot extract the hour and minute, rather, it fails with the following
Error in 'eval' command: The expression is malformed. An unexpected character is reached at '@d,"%H:%M")'. How can I pass through the timepicker token as a converted epoch formatted time.
... View more