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!

.conf24 | Day 0

Hello Splunk Community! My name is Chris, and I'm based in Canberra, Australia's capital, and I travelled for ...

Enhance Security Visibility with Splunk Enterprise Security 7.1 through Threat ...

(view in My Videos)Struggling with alert fatigue, lack of context, and prioritization around security ...

Troubleshooting the OpenTelemetry Collector

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