<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to get non-abbreviated time-zone? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432244#M75632</link>
    <description>&lt;P&gt;Oops! Sorry I forgot I had this question out there. Have now accepted!&lt;/P&gt;</description>
    <pubDate>Mon, 17 Sep 2018 21:31:55 GMT</pubDate>
    <dc:creator>georgiawebber</dc:creator>
    <dc:date>2018-09-17T21:31:55Z</dc:date>
    <item>
      <title>How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432238#M75626</link>
      <description>&lt;P&gt;Is there a way to display the full timezone and not just the abbreviation? The SPL I am currently using is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval zone=strftime(time(),"%Z %z") 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;However this just gives me the abbreviation (i.e. "AEST +1000"). I would like it to display "Australian Eastern Standard Time +1000".&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2018 06:07:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432238#M75626</guid>
      <dc:creator>georgiawebber</dc:creator>
      <dc:date>2018-08-28T06:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432239#M75627</link>
      <description>&lt;P&gt;These Q&amp;amp;A links should give you what you need (be sure to &lt;CODE&gt;UpVote&lt;/CODE&gt; the answers that help):&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/590067/how-do-i-map-my-personally-tz-adjusted-time-to-ano.html"&gt;https://answers.splunk.com/answers/590067/how-do-i-map-my-personally-tz-adjusted-time-to-ano.html&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/127193/where-are-splunk-valid-tz-options-in-propsconf.html"&gt;https://answers.splunk.com/answers/127193/where-are-splunk-valid-tz-options-in-propsconf.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 01:36:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432239#M75627</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2018-09-05T01:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432240#M75628</link>
      <description>&lt;P&gt;You can also scrape things like wikipedia and make your own lookups with apps like these:&lt;BR /&gt;
&lt;A href="https://splunkbase.splunk.com/app/4146/"&gt;https://splunkbase.splunk.com/app/4146/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://splunkbase.splunk.com/app/3226/"&gt;https://splunkbase.splunk.com/app/3226/&lt;/A&gt;&lt;BR /&gt;
&lt;A href="https://splunkbase.splunk.com/app/635/"&gt;https://splunkbase.splunk.com/app/635/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 02:54:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432240#M75628</guid>
      <dc:creator>Noah_Woodcock</dc:creator>
      <dc:date>2018-09-05T02:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432241#M75629</link>
      <description>&lt;P&gt;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".&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval zone=strftime(time(),"%Z %z")
| rex mode=sed field=zone "s/^(AEST)/Australian Eastern Standard Time/"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;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.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Sep 2018 13:02:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432241#M75629</guid>
      <dc:creator>efavreau</dc:creator>
      <dc:date>2018-09-05T13:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432242#M75630</link>
      <description>&lt;P&gt;@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.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 14:27:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432242#M75630</guid>
      <dc:creator>efavreau</dc:creator>
      <dc:date>2018-09-06T14:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432243#M75631</link>
      <description>&lt;P&gt;Hi @georgiawebber &lt;/P&gt;

&lt;P&gt;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.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 17:15:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432243#M75631</guid>
      <dc:creator>Anam</dc:creator>
      <dc:date>2018-09-17T17:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to get non-abbreviated time-zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432244#M75632</link>
      <description>&lt;P&gt;Oops! Sorry I forgot I had this question out there. Have now accepted!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Sep 2018 21:31:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-get-non-abbreviated-time-zone/m-p/432244#M75632</guid>
      <dc:creator>georgiawebber</dc:creator>
      <dc:date>2018-09-17T21:31:55Z</dc:date>
    </item>
  </channel>
</rss>

