Getting Data In

how to convert datetime from UTC to ET in search results

dhavamanis
Builder

we have indexed data in UTC format and want to display in the search results stats as ET zone. Can you please provide some example.

index="myindex" earliest=-24h latest=now| stats count by date_month,date_mday,date_hour | sort count desc

In the above query giving results in UTC format results and we want to convert show as ET zone.

Tags (2)
1 Solution

somesoni2
Revered Legend

Assuming your local timezone is UTC (as the search results displays it). Try this

index=myindex earliest=-24h latest=now | eval EST_time=strptime(strftime(_time,"%m/%d/%Y %H:%M:%S EST"),"%m/%d/%Y %H:%M:%S %Z") | eval date_month=strftime(EST_time,"%m") | eval date_mday=strftime(EST_time,"%d") | eval date_hour=strftime(EST_time,"%H")| stats count by date_month,date_mday,date_hour | sort count desc

View solution in original post

somesoni2
Revered Legend

Assuming your local timezone is UTC (as the search results displays it). Try this

index=myindex earliest=-24h latest=now | eval EST_time=strptime(strftime(_time,"%m/%d/%Y %H:%M:%S EST"),"%m/%d/%Y %H:%M:%S %Z") | eval date_month=strftime(EST_time,"%m") | eval date_mday=strftime(EST_time,"%d") | eval date_hour=strftime(EST_time,"%H")| stats count by date_month,date_mday,date_hour | sort count desc
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...