Dashboards & Visualizations

Working with strange time & date values (Convert 20190325 into 2019:03:25)

x213217
Explorer

Hello,
I need help with working with some odd styles of time and date values that i am trying to format

TransferStartTime = 000036
This means at the 00 hr 00 min 36 second

TransferStartDate = 20190325
This means at 2019 year 03 month 25 day

So in essence it is basically one clumped value for each time and the date
Since this is not epoch,
how can i separate the StartTime to display as 00:00:36 and the TransferStartDate as 2019:03:25 ? So it is a lot more clear

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

@x213217 ,

|eval TransferStartDate =strftime(strptime(TransferStartDate,"%Y%m%d"),"%Y:%m:%d")
|eval TransferStartTime =strftime(strptime(TransferStartTime ,"%H%M%S"),"%H:%M:%S")

Combined date & time

 |eval TransferDateTime=TransferStartDate." ".TransferStartTime
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

vnravikumar
Champion

Hi

Try like

| makeresults 
| eval TransferStartTime ="000036" 
| rex field=TransferStartTime "(?P<Hr>\d\d)(?P<Min>\d\d)(?P<Sec>\d\d)" 
| eval TransferStartTime = Hr.":".Min.":".Sec 
| eval TransferStartDate ="20190325" 
| rex field=TransferStartDate "(?P<year>\d\d\d\d)(?P<Mon>\d\d)(?P<day>\d\d)" 
| eval TransferStartDate= year.":".Mon.":".day 
| table TransferStartTime TransferStartDate
0 Karma

renjith_nair
Legend

@x213217 ,

|eval TransferStartDate =strftime(strptime(TransferStartDate,"%Y%m%d"),"%Y:%m:%d")
|eval TransferStartTime =strftime(strptime(TransferStartTime ,"%H%M%S"),"%H:%M:%S")

Combined date & time

 |eval TransferDateTime=TransferStartDate." ".TransferStartTime
---
What goes around comes around. If it helps, hit it with Karma 🙂

x213217
Explorer

Thank you!

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...