Splunk Search

Add time in search string

vik123ash
Explorer

Hi All,

i want to add time in search string.

My data is showing time 26-02-2018T02:00:00.000+0000, but while searching i want to add 11 hour , means it should create filter for time 27-02-2018T13:00:00.000+0000.

Also after this i also want to apply substring on time to just show dates.

i am using below one, but its not working.

index=XXXXXX source="XXXXXX" |eval host=add(Date,+11) | eval hostgroup=substr(Date,1,10) | stats count(Date) by hostgroup

Please help.

Vikash

Tags (1)
0 Karma

p_gurav
Champion

Try this:

index=XXXXXX source="XXXXXX" |eval date=strptime(CDate, "%d-%m-%Y %H:%M:%S.%3N%z") | eval date1=date+39600 | eval hostgroup =strftime(date1, "%d-%m-%Y") | stats count(CDate) by hostgroup

0 Karma

p_gurav
Champion

Hi,

This may be helpful for you:

index=XXXXXX source="XXXXXX" |eval date=strftime(Date, "%d-%m-%Y %H:%M:%S.%3N%z") | eval date1=date+39600 | eval  hostgroup =strptime(date1, "%d-%m-%Y") | stats count(date) by hostgroup
0 Karma

vik123ash
Explorer

@p_gaurav

Thanks for your quick reply.

Query is not provding any output.

0 Karma

p_gurav
Champion

Hi,

can you tell me output of this:
index=XXXXXX source="XXXXXX" |eval date=strftime(_time, "%d-%m-%Y %H:%M:%S")

0 Karma

vik123ash
Explorer

I have too many date fields, out of which i want to create filter for one of the date field. i am not sure if _time will help here.

Below is the date field on which i need to execute the query.
CDate: 2018-02-27T03:55:28.000+0000

0 Karma

vik123ash
Explorer

Hi @p_gaurav

We are getting output 0 though we have non-zero value.

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...