Dashboards & Visualizations

Date showing in a str format

Eva53
Explorer

Hello !

I have a date showing in this format (str) : 20240324090045.560961-240

I've been trying to convert it into a readable date format for my dashboards, with no success so far.

Does someone have a solution ? I'm getting nowhere with the splunk docs or other solved problems.

Thanks !

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Depending on what you are trying to do with the StartTime, you may need one or both of the evals

eventtype=windows_index_windows eventtype=hostmon_windows host="///" (Name="///*") OR (Name="///*") OR (Name="///*")  StartTime="*"
| table Name, StartTime
``` Parse strptime the StartTime into an epoch time value ```
| eval epochStartTime=strptime(StartTime,"%Y%m%d%H%M%S.%6N%z")
``` Format strftime the epoch time into a string ```
| eval stringStartTime=strftime(epochStartTime,"%F %T.%6N")

View solution in original post

Eva53
Explorer

It works perfectly for the specified date, but how do I do include it in my command if I want your answer to be the format for every StartTime :

eventtype=windows_index_windows eventtype=hostmon_windows host="///" (Name="///*") OR (Name="///*") OR (Name="///*")  StartTime="*"
| table Name, StartTime

Sorry if I'm not clear, English is not my first language 


0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Depending on what you are trying to do with the StartTime, you may need one or both of the evals

eventtype=windows_index_windows eventtype=hostmon_windows host="///" (Name="///*") OR (Name="///*") OR (Name="///*")  StartTime="*"
| table Name, StartTime
``` Parse strptime the StartTime into an epoch time value ```
| eval epochStartTime=strptime(StartTime,"%Y%m%d%H%M%S.%6N%z")
``` Format strftime the epoch time into a string ```
| eval stringStartTime=strftime(epochStartTime,"%F %T.%6N")

Eva53
Explorer

It worked !

Thank you so much I've been struggling with that problem for so long !

Have a wonderful day

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Does this help?

| makeresults
| eval time="20240324090045.560961-240"
| eval _time=strptime(time,"%Y%m%d%H%M%S.%6N%z")
| eval stringtime=strftime(_time,"%F %T.%6N")
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...