<?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 how to view data based on different time zone? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245276#M47412</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;my splunk log is falling as charlotte time.&lt;/P&gt;

&lt;P&gt;when people from dubai or London or Denver viewwing the report.&lt;BR /&gt;
Report need to be displayed in their time zone. &lt;BR /&gt;
Ex :  if charlotte time is 5:08 AM now when people from london viewing the dashboard at same time, then dashboard data should show 10:08 AM  data, because time is changing fro zone to zone. &lt;/P&gt;

&lt;P&gt;Thanks in Advance &lt;/P&gt;</description>
    <pubDate>Fri, 22 Jan 2016 10:15:01 GMT</pubDate>
    <dc:creator>shankarananthth</dc:creator>
    <dc:date>2016-01-22T10:15:01Z</dc:date>
    <item>
      <title>how to view data based on different time zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245276#M47412</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;my splunk log is falling as charlotte time.&lt;/P&gt;

&lt;P&gt;when people from dubai or London or Denver viewwing the report.&lt;BR /&gt;
Report need to be displayed in their time zone. &lt;BR /&gt;
Ex :  if charlotte time is 5:08 AM now when people from london viewing the dashboard at same time, then dashboard data should show 10:08 AM  data, because time is changing fro zone to zone. &lt;/P&gt;

&lt;P&gt;Thanks in Advance &lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2016 10:15:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245276#M47412</guid>
      <dc:creator>shankarananthth</dc:creator>
      <dc:date>2016-01-22T10:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to view data based on different time zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245277#M47413</link>
      <description>&lt;P&gt;Hi  shankarananthth&lt;BR /&gt;
The following link will help you just click on it and use&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/86587/convert-the-timezone-from-a-time-field.html"&gt;https://answers.splunk.com/answers/86587/convert-the-timezone-from-a-time-field.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2016 11:02:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245277#M47413</guid>
      <dc:creator>chimell</dc:creator>
      <dc:date>2016-01-22T11:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to view data based on different time zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245278#M47414</link>
      <description>&lt;P&gt;Hi Chimell,&lt;/P&gt;

&lt;P&gt;I have already refereed that link and framed the query, but now the problem i facing.&lt;BR /&gt;
How can i give that in drop down or multi select option and make it work for entire dashboard.&lt;/P&gt;

&lt;P&gt;Query which i framed:&lt;/P&gt;

&lt;P&gt;index="way" sourcetype="transactions"  source="/env/transactionlog/*"&lt;BR /&gt;
| transaction fields=MessageId keepevicted=true&lt;BR /&gt;
| stats min(_time) AS startDate, max(_time) AS endDate | convert timeformat="%F %T" ctime(*Date)&lt;BR /&gt;
| eval max=strftime(max, "%Y-%m-%d %T")&lt;BR /&gt;
| eval DUBAIS= strptime(startDate, "%Y-%m-%d %T") +32400&lt;BR /&gt;
| eval DUBAIE= strptime(endDate , "%Y-%m-%d %T") +32400&lt;BR /&gt;
| eval DUBAI_START_TIME= strftime(DUBAIS, "%Y-%m-%d %H:%M:%S") &lt;BR /&gt;
| eval DUBAI_END_TIME= strftime(DUBAIE, "%Y-%m-%d %H:%M:%S") &lt;BR /&gt;
| table DUBAI_END_TIME&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:31:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245278#M47414</guid>
      <dc:creator>shankarananthth</dc:creator>
      <dc:date>2020-09-29T08:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: how to view data based on different time zone?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245279#M47415</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have already refereed the same link and developed the below Query.&lt;/P&gt;

&lt;P&gt;index="way" sourcetype="transactions"  source="/transactionlog/*"&lt;BR /&gt;
| transaction fields=MessageId keepevicted=true&lt;BR /&gt;
| stats min(_time) AS startDate, max(_time) AS endDate | convert timeformat="%F %T" ctime(*Date)&lt;BR /&gt;
| eval max=strftime(max, "%Y-%m-%d %T")&lt;BR /&gt;
| eval DUBAIS= strptime(startDate, "%Y-%m-%d %T") +32400&lt;BR /&gt;
| eval DUBAIE= strptime(endDate , "%Y-%m-%d %T") +32400&lt;BR /&gt;
| eval DUBAI_START_TIME= strftime(DUBAIS, "%Y-%m-%d %H:%M:%S") &lt;BR /&gt;
| eval DUBAI_END_TIME= strftime(DUBAIE, "%Y-%m-%d %H:%M:%S") &lt;BR /&gt;
| table DUBAI_START_TIME DUBAI_END_TIME&lt;/P&gt;

&lt;P&gt;Problem which i'm facing,&lt;/P&gt;

&lt;P&gt;How can i able to give the above query in multi-select.&lt;BR /&gt;
I need to choose both the values need to be there in the filter.&lt;BR /&gt;
When i choose that value it need to be reflected for entire dashboard. &lt;/P&gt;

&lt;P&gt;Can u kindly give your valuable sugestion&lt;BR /&gt;
Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:32:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/how-to-view-data-based-on-different-time-zone/m-p/245279#M47415</guid>
      <dc:creator>shankarananthth</dc:creator>
      <dc:date>2020-09-29T08:32:01Z</dc:date>
    </item>
  </channel>
</rss>

