Splunk Search

extract only date from a date time field

surekhasplunk
Communicator

Example  i have a csv where the date is like this in the date field

Billing Start= 43774.7083333

But when i format the cell manually i see the actual date is 11/5/2019  5:00:00 PM which is correct. 

And I am using below query but not working. Can you please help to get the above correct date. 

eval date=strftime('Billing Start',"%M/%d/%Y %H:%M:%S %p")

It gives me below output

43774.708333309/01/1970 13:09:34 PM
Labels (1)
Tags (3)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

The strftime function expects it's input to be in Linux epoch time format, but the Billing Start field appears to be in Microsoft's date format, which is not the same.

Convert from Excel dates to Unix/Linux dates using this formula

Unix Timestamp = (Excel Timestamp - 25569) * 86400

See https://stackoverflow.com/questions/1703505/excel-date-to-unix-timestamp for more.

---
If this reply helps you, Karma would be appreciated.
0 Karma
Get Updates on the Splunk Community!

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...