Getting Data In

How to get non-abbreviated time-zone?

georgiawebber
Engager

Is there a way to display the full timezone and not just the abbreviation? The SPL I am currently using is:

| eval zone=strftime(time(),"%Z %z") 

However this just gives me the abbreviation (i.e. "AEST +1000"). I would like it to display "Australian Eastern Standard Time +1000".

0 Karma
1 Solution

Noah_Woodcock
Path Finder

Anam
Community Manager
Community Manager

Hi @georgiawebber

I am the Community Content Specialist for Splunk Answers. If any of the answers worked for you please go ahead and accept it, if not let the community know if you need more clarification.

Thanks

0 Karma

georgiawebber
Engager

Oops! Sorry I forgot I had this question out there. Have now accepted!

0 Karma

efavreau
Motivator

If it's consistently like in your question, here's a run anywhere example that everytime the zone field start with "AEST", it will replace it with "Australian Eastern Standard Time".

| makeresults
| eval zone=strftime(time(),"%Z %z")
| rex mode=sed field=zone "s/^(AEST)/Australian Eastern Standard Time/"

The makeresults command is simply to get it to work as an example, but what you need after your eval statement, is the third line.

###

If this reply helps you, an upvote would be appreciated.
0 Karma

efavreau
Motivator

@georgiawebber Did this solution work for you? Did you need to clarify your question? Please remember to accept the answer that helped, or clarify your question/comment on the answers that are close.

###

If this reply helps you, an upvote would be appreciated.
0 Karma

Noah_Woodcock
Path Finder

You can also scrape things like wikipedia and make your own lookups with apps like these:
https://splunkbase.splunk.com/app/4146/
https://splunkbase.splunk.com/app/3226/
https://splunkbase.splunk.com/app/635/

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...