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!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...