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!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...