Dashboards & Visualizations

How to wrap time picker tokens to always get epoch time in search on dashboard?

Kmishkind
New Member

I have a search with a join and subsearch I wish to apply a date range to the subsearch. I have put the search into a dashboard and changed it to a form. I updated the subsearch to use a where statement to narrow the _time.

The values from the datetime picker are passed through the field1.earliest and field1.latest token-this works just fine so long as I set the date time picker to "between" exact dates. If I use "last month" or one of the other relative fields I get errors because I get the date modifier values passed to the token d@d and @mon instead of the epoch date.

So....is there a way of wrapping the tokens to always get the epoc time or do I change my query to somehow accept epoch and/or date modifiers.

Here is the subquery
......
join name
[search sourcetype=logs

|regex user!=("[0-9].|ws_")|where isnotnull(user)

|where _time>=$field1.earliest$ AND _time<=$field1.latest$
.... ]

Thanks for your yelp

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

Try this:

main search ... | join name [search earliest=$field1.earliest$ latest=$field1.latest$ sourcetype=logs user=* | regex user!= ...] ...

http://docs.splunk.com/Documentation/Splunk/6.1.2/Search/Specifytimemodifiersinyoursearch

0 Karma

somesoni2
Revered Legend

Try this

your base search...| join name [search sourcetype=logs  
[|gentimes start=-1 | eval earliest=if(isnum($field1.earliest$),$field1.earliest$,relative_time(now(),"$field1.earliest$") | latest=if(isnum($field1.latest$),$field1.latest$,relative_time(now(),"$field1.latest$") | return earliest,latest]
|regex user!=("[0-9].|ws_")|where isnotnull(user) ....

With the subsearch with subsearch (with 'gentimes') providing earliest and latest value for subsearch, the where condition will not be required.

0 Karma

Kmishkind
New Member

No-only the subsearch.

0 Karma

somesoni2
Revered Legend

Does the same timerange picker applies to main search??

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...