Dashboards & Visualizations

Issue on Dropdown timepicker on Dashboard

iancorrea
Path Finder

I'm having problem on the eval part on join subsearch. When i run this search, I've got this result

"Error in 'eval' command: The expression is malformed. Expected )."

I'm using Dropdown on the dashboard as my timepicker so i have multiple tokens. Thanks

...//my base search//... earliest=$_emon$/$_eday$/$_eyear$:00:00:00 latest=$_lmon$/$_lday$/$_lyear$:23:59:59 

| join type=outer
        [
            search ...//another base search//... latest="+2mon" earliest=[| gentimes start=-1|eval new = relative_time($_emon$/$_eday$/$_eyear$:00:00:00 ,"-2228000")| return $new]

But when I'm using default time picker and use only one token $time.earliest$, my search is okay. Is the issue on this was having multiple tokens when selecting time? Thanks

0 Karma
1 Solution

elle118
Engager

Hi, @iancorrea

Let's check how to use the relative_time function.
You must specify UNIX time in the first argument.

https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/DateandTimeFunctions

For the problem you are facing, converting to UNIX time with strptime function first will give you the expected result.

ex)

| eval etime = strptime("$_emon$/$_eday$/$_eyear$:00:00:00", "%m/%d/%Y:%H:%M:%S")
| eval new = relative_time(etime,"-2228000")

View solution in original post

elle118
Engager

Hi, @iancorrea

Let's check how to use the relative_time function.
You must specify UNIX time in the first argument.

https://docs.splunk.com/Documentation/Splunk/7.3.0/SearchReference/DateandTimeFunctions

For the problem you are facing, converting to UNIX time with strptime function first will give you the expected result.

ex)

| eval etime = strptime("$_emon$/$_eday$/$_eyear$:00:00:00", "%m/%d/%Y:%H:%M:%S")
| eval new = relative_time(etime,"-2228000")

iancorrea
Path Finder

Thanks! This works the way I want it. 😄

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...