Splunk Search

Date and Time format for not an epoch format

srinivas_gowda
Path Finder

Hello all,

 

I have been getting the data and time format in the below way. How do I convert it to the given readable format

 

20210901225446 -> 2021-09-01 22:54:46

20210901224509 -> 2021-09-01 22:45:09

 

Thank you.

Labels (4)
0 Karma
1 Solution

isoutamo
SplunkTrust
SplunkTrust

Hi

there is couple of ways to do it. Here is one

| makeresults
| eval time = "20210901225446"
| eval nTime = strftime(strptime(time,"%Y%m%d%H%M%S"), "%F %T")
| table time nTime

r. Ismo 

View solution in original post

isoutamo
SplunkTrust
SplunkTrust

Hi

there is couple of ways to do it. Here is one

| makeresults
| eval time = "20210901225446"
| eval nTime = strftime(strptime(time,"%Y%m%d%H%M%S"), "%F %T")
| table time nTime

r. Ismo 

Get Updates on the Splunk Community!

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...