Splunk Search

Why is _time storing incorrect value?

angelinealex
Communicator

I use the below saved search and scheduled it and enabled the summary index.

| dbxquery connection=connectionname query="select startdatetime, enddatetime from tablename where enddatetime > ? AND enddatetime < ?"
 [| makeresults 
    | appendcols 
        [| inputlookup kvstorelookup 
           ....
           ....
          | eval starttime="2018-07-19 23:00:01"
          | eval endtime="2018-07-19 23:15:00"
          | eval daterange=starttime.",".endtime
          | rename daterange as params
          | fields params]] 
| eval _time=enddatetime
|fields _time, startdatetime, enddatetime
|table _time, startdatetime, enddatetime

When I run the query manually it shows _time as exactly same as enddatetime value.
But when it runs through scheduler _time is always stored as "2018-07-19 00:59:59"

I am not sure why this is happening. Can someone please help?

0 Karma
1 Solution

angelinealex
Communicator

Fixed the issue. Missed to convert the time to epoch before storing in _time.

Below line fixed the issue.
| eval _time=strptime(enddatetime,"%Y-%m-%d %H:%M:%S.%1N")

View solution in original post

0 Karma

angelinealex
Communicator

Fixed the issue. Missed to convert the time to epoch before storing in _time.

Below line fixed the issue.
| eval _time=strptime(enddatetime,"%Y-%m-%d %H:%M:%S.%1N")

0 Karma

manish_singh_77
Builder

Don't use _time in your query and then try to compare the searches...Let me know if it works for you...

0 Karma

angelinealex
Communicator

I tried, it didnt work. Still _time value stored as "2018-07-19 00:59:59"

0 Karma

jcoates
Communicator

I think you need to do an input instead to control time, http://docs.splunk.com/Documentation/DBX/3.1.3/DeployDBX/Createandmanagedatabaseinputs

Have you tried naming the time column to _time in your SQL?

0 Karma

angelinealex
Communicator

you mean enddatetime as _time in select query? If so, yes I did. But it didnt work.

I also tried removing _time field from this saved search. But still the _time value stored as "2018-07-19 00:59:59"

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...