<?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: Need to add the time zone after the time in the field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/600026#M208869</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/241633"&gt;@Veeru&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if it resolved your issue can you please accept the solution it might help others in the group&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;note:- &lt;SPAN&gt;If it helps karma is appreciated/if it resolves acceptance as solution is appreciated&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jun 2022 08:14:11 GMT</pubDate>
    <dc:creator>venky1544</dc:creator>
    <dc:date>2022-06-01T08:14:11Z</dc:date>
    <item>
      <title>How do I  add the time zone after the time in the field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/599838#M208789</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;Good Day!&lt;/P&gt;
&lt;P&gt;I having the values in the field Data As shown below&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="293.938px" height="25px"&gt;
&lt;DIV class=""&gt;2022-05-31 10:18:09&amp;nbsp; &amp;nbsp;emea&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="293.938px" height="47px"&gt;
&lt;DIV class=""&gt;2022-05-31&lt;/DIV&gt;
&lt;DIV class=""&gt;2022-05-31 10:18:14&amp;nbsp; &amp;nbsp; apac&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="293.938px" height="47px"&gt;
&lt;DIV class=""&gt;2022-05-31&lt;/DIV&gt;
&lt;DIV class=""&gt;2022-05-31 10:18:20&amp;nbsp; &amp;nbsp; &amp;nbsp;us&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;I want to show the time zone as well like if emea comes after time it should show CST&lt;BR /&gt;Output should be as follows:&lt;/P&gt;
&lt;TABLE width="292px"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="291px" height="25px"&gt;
&lt;DIV class=""&gt;2022-05-31 10:18:09 CST&amp;nbsp; emea&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="291px" height="47px"&gt;
&lt;DIV class=""&gt;2022-05-31&lt;/DIV&gt;
&lt;DIV class=""&gt;2022-05-31 10:18:14 HKT&amp;nbsp; &amp;nbsp;apac&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="291px" height="47px"&gt;
&lt;DIV class=""&gt;2022-05-31&lt;/DIV&gt;
&lt;DIV class=""&gt;2022-05-31 10:18:20&amp;nbsp; EDT&amp;nbsp; &amp;nbsp;us&amp;nbsp;&lt;/DIV&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;Please help me on this&lt;BR /&gt;Thank you in Advance&lt;BR /&gt;Veeru&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 15:19:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/599838#M208789</guid>
      <dc:creator>Veeru</dc:creator>
      <dc:date>2022-06-01T15:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add the time zone after the time in the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/599904#M208821</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/241633"&gt;@Veeru&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can try the below query&amp;nbsp;&lt;/P&gt;&lt;P&gt;|makeresults |eval new = "2022-05-31 10:18:09 emea"&lt;BR /&gt;|append [|makeresults |eval new= "2022-05-31 10:18:14 apac"]&lt;BR /&gt;|append [|makeresults |eval new= "2022-05-31 10:18:20 us "]&lt;BR /&gt;|eval new=replace(new,"emea", "CST emea")&lt;BR /&gt;|eval new=replace(new,"apac", "HKT apac")&lt;BR /&gt;|eval new=replace(new,"us", "EDT us")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If it helps karma is appreciated/if it resolves acceptance as solution is appreciated&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2022 13:51:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/599904#M208821</guid>
      <dc:creator>venky1544</dc:creator>
      <dc:date>2022-05-31T13:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add the time zone after the time in the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/600007#M208863</link>
      <description>&lt;P&gt;Thanks for the help i got the results&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 06:14:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/600007#M208863</guid>
      <dc:creator>Veeru</dc:creator>
      <dc:date>2022-06-01T06:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Need to add the time zone after the time in the field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/600026#M208869</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/241633"&gt;@Veeru&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if it resolved your issue can you please accept the solution it might help others in the group&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;note:- &lt;SPAN&gt;If it helps karma is appreciated/if it resolves acceptance as solution is appreciated&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2022 08:14:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-add-the-time-zone-after-the-time-in-the-field/m-p/600026#M208869</guid>
      <dc:creator>venky1544</dc:creator>
      <dc:date>2022-06-01T08:14:11Z</dc:date>
    </item>
  </channel>
</rss>

