Splunk Search

Convert log time (epoch) to readable Date and time

raindrop18
Communicator

I have this on my log including epoch time, how I can convert the time next to msg to readable time.

"rank=msg(1489546552.151:69280424)"

Tags (1)
0 Karma
1 Solution

jkat54
SplunkTrust
SplunkTrust
 ...|rex field=rank "msg\((?<epoch>\d+\.\d+)" 
 | convert ctime(epoch) 
 | table epoch

View solution in original post

woodcock
Esteemed Legend

Like this:

The setup:

| makeresults | eval rank="msg(1489546552.151:69280424)" 

The solution:

| rex field=rank "msg\((?<epoch>\d+\.\d+)"
| fieldformat epoch=strftime(epoch, "%m/%d/%Y %H:%M:%S")
0 Karma

jkat54
SplunkTrust
SplunkTrust
 ...|rex field=rank "msg\((?<epoch>\d+\.\d+)" 
 | convert ctime(epoch) 
 | table epoch

raindrop18
Communicator

thanks ,that works as expected.

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!

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 ...

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...