Splunk Search

Help to convert a unix time

jip31
Motivator

Hi

I use a | stats min(_time) as time_min stats max(_time) as time_max command in my search

The time is displayed in Unix format

Example :

Time_min=1688019886.761

Time-max=1690461727.136

I have added an eval time=strftime(_time, "%d-%m-%Y %H:%M" before the stats in order to convert the time but the result is sometimes strange because the max time is older than the min time

How to convert the time properly please?

Tags (1)
0 Karma
1 Solution

jotne
Builder

You need your search above and it needs to contain the _time field.   Can you post your full SPL search?

 

<your search>
| stats min(_time) as time_min max(_time) as time_max 
| convert ctime(time_min)
| convert ctime(time_max)

 

 

This should work with all Splunk installation:

index=_internal
| stats min(_time) as time_min max(_time) as time_max 
| convert ctime(time_min)
| convert ctime(time_max)

View solution in original post

0 Karma

jotne
Builder

If you like a custom format, yes, then your need to use eval and not convert.

PS if you can accept the answer it would be fine 🙂

0 Karma

jotne
Builder

You need your search above and it needs to contain the _time field.   Can you post your full SPL search?

 

<your search>
| stats min(_time) as time_min max(_time) as time_max 
| convert ctime(time_min)
| convert ctime(time_max)

 

 

This should work with all Splunk installation:

index=_internal
| stats min(_time) as time_min max(_time) as time_max 
| convert ctime(time_min)
| convert ctime(time_max)
0 Karma

jotne
Builder

Try this:

 

| stats min(_time) as time_min max(_time) as time_max 
| convert ctime(time_min)
| convert ctime(time_max)

 

 

 

0 Karma

jip31
Motivator

Tha.ks it works

And now if i want to format the time i need to do an eval _time?

0 Karma
Get Updates on the Splunk Community!

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  &#x1f680; Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Stronger Security with Federated Search for S3, GCP SQL & Australian Threat ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Accelerating Observability as Code with the Splunk AI Assistant

We’ve seen in previous posts what Observability as Code (OaC) is and how it’s now essential for managing ...