Dashboards & Visualizations

Time comparison - Relative and Explict

manas
Explorer

I have a field which gives when a particular event started. Depending on time period selected in dashboard , i want to fetch all records past that time period selected in time picker input of the dashboard.

 

Problem is if time input is relative like "today" /"Yesterday" choice 1 below works and i get results. When time selected as input is explicit like "10/02/2025"  ,choice 2 works and i get results. 

Relative time logic :

|where timestamp2 >= relative_time(now(), "$field1.earliest$")

Explicit time logic :

|where timestamp2 >= tonumber("$field1.earliest$")

  How to enhance this ,so that irrespective of input ,will get results.

Something like below does not work :

 

| eval earliest_time=if(isnum("$field1.earliest$"), tonumber("$field1.earliest$"), relative_time(now(), "$field1.earliest$"))
| where  timestamp2 >= earliest_time

 

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Possibly the simplest answer is to let Splunk do it for you. You can use addinfo to get the search time settings and use them in your search

| addinfo
| where timestamp2 >= info_min_time

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

Possibly the simplest answer is to let Splunk do it for you. You can use addinfo to get the search time settings and use them in your search

| addinfo
| where timestamp2 >= info_min_time

manas
Explorer

This works . Thanks . I have multiple time pickers in dashboard as it's a comparison dashboard as given each widget has it's own time picker ,it works regardless. 

0 Karma
Get Updates on the Splunk Community!

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk on November 6 at 11AM PT, and empower your SOC to reach new heights! Duration: ...

Splunk Observability as Code: From Zero to Dashboard

For the details on what Self-Service Observability and Observability as Code is, we have some awesome content ...