I have a saved search and I would like to limit the output to a specific timeframe- but unfortunately I am getting complete results and not the time range alone I want. | savedsearch test earliest=1355052259 latest=1355055859
(I am using sdk Splunk Java and I'm unable to get desired results either from sdk splunk java or from splunk web UI). Kindly help.
Your search does not have placeholders $earliest$ and $latest$, so doing
| savedsearch test earliest=1355052259 latest=1355055859
makes no variable substitutions for earliest and latest happen.
Your search does not have placeholders $earliest$ and $latest$, so doing
| savedsearch test earliest=1355052259 latest=1355055859
makes no variable substitutions for earliest and latest happen.
Thank you.
index="ia" sourcetype="test1" OR sourcetype="test2" | transaction fields="myfield" startswith="started" endswith="ended" | search index=ia duration>5 |convert ctime(_time) as Time | sort by Time
duration is an extracted field
What's your search?