<?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 weekly data and week should be between saturday to friday in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365323#M161183</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;index=your_index State="Active" earliest=@w6@d latest=@w6@d+7d | stats count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Shows the count of all open tickets from previous Saturday until the end of Friday. &lt;BR /&gt;
If you want to exclude friday, use latest=@w5@d+7d &lt;/P&gt;</description>
    <pubDate>Fri, 05 May 2017 17:29:28 GMT</pubDate>
    <dc:creator>ckunath</dc:creator>
    <dc:date>2017-05-05T17:29:28Z</dc:date>
    <item>
      <title>how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365315#M161175</link>
      <description>&lt;P&gt;Hello Guys,&lt;/P&gt;

&lt;P&gt;I have a requirement to show count of open tickets for every week. &lt;BR /&gt;
Week should be between saturday to friday. So x-axis  should contain points of every friday. So for every friday we should show the count of tickets raised from last saturday to this friday.&lt;/P&gt;

&lt;P&gt;Can anyone help me to achieve this?&lt;/P&gt;

&lt;P&gt;Many Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 16:26:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365315#M161175</guid>
      <dc:creator>Chinmai</dc:creator>
      <dc:date>2017-05-05T16:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365316#M161176</link>
      <description>&lt;P&gt;I'm not completely understanding your question - do you what to have a timechart that always goes from last saturday to next friday with a bar that shows how many open tickets there are on that day, and how many there were on that weekday of the last week?&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 16:34:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365316#M161176</guid>
      <dc:creator>ckunath</dc:creator>
      <dc:date>2017-05-05T16:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365317#M161177</link>
      <description>&lt;P&gt;see for example, today is friday, so for today(may 5) it should show the count of open tickets raised from last saturday(april 29) till today.&lt;/P&gt;

&lt;P&gt;Similarly, for april 28, the count should  show the number of open tickets raised from  april 22nd to april 28.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 16:54:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365317#M161177</guid>
      <dc:creator>Chinmai</dc:creator>
      <dc:date>2017-05-05T16:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365318#M161178</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=your_index earliest=-6d@d latest=now | timechart span=1d count(open_tickets) by date_wday
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This search should always show the count of open_tickets for each weekday in the last 7 days. &lt;/P&gt;

&lt;P&gt;Do you want to create a dashboard panel of it? Otherwise you could save this as report and let it run on every Friday night.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:07:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365318#M161178</guid>
      <dc:creator>ckunath</dc:creator>
      <dc:date>2017-05-05T17:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365319#M161179</link>
      <description>&lt;P&gt;this wont give me the weekly data as i wanted and i wanted it in a dashboard panel.&lt;/P&gt;

&lt;P&gt;see for example, today is friday, so for today(may 5) it should show the count of open tickets raised from last saturday(april 29) till today.&lt;/P&gt;

&lt;P&gt;Similarly, for april 28(last friday), the count should show the number of open tickets raised from april 22nd to april 28.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:11:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365319#M161179</guid>
      <dc:creator>Chinmai</dc:creator>
      <dc:date>2017-05-05T17:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365320#M161180</link>
      <description>&lt;P&gt;What does an event with an open ticket look like? Is it just the event being there or is there a certain field value to look out for?&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:15:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365320#M161180</guid>
      <dc:creator>ckunath</dc:creator>
      <dc:date>2017-05-05T17:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365321#M161181</link>
      <description>&lt;P&gt;certain field value like State="Active", i can get the open tickets but i am finding difficulty to find tickets raised from every last saturday to this friday.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:18:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365321#M161181</guid>
      <dc:creator>Chinmai</dc:creator>
      <dc:date>2017-05-05T17:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365322#M161182</link>
      <description>&lt;P&gt;use this answer:&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/30430/previous-business-week-day.html"&gt;https://answers.splunk.com/answers/30430/previous-business-week-day.html&lt;/A&gt;&lt;BR /&gt;
and this doc:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/6.6.0/Search/Specifytimemodifiersinyoursearch"&gt;https://docs.splunk.com/Documentation/Splunk/6.6.0/Search/Specifytimemodifiersinyoursearch&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;describes it thoroughly&lt;/P&gt;

&lt;P&gt;hope it helps&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:21:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365322#M161182</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-05-05T17:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to get weekly data and week should be between saturday to friday</title>
      <link>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365323#M161183</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=your_index State="Active" earliest=@w6@d latest=@w6@d+7d | stats count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Shows the count of all open tickets from previous Saturday until the end of Friday. &lt;BR /&gt;
If you want to exclude friday, use latest=@w5@d+7d &lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 17:29:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/how-to-get-weekly-data-and-week-should-be-between-saturday-to/m-p/365323#M161183</guid>
      <dc:creator>ckunath</dc:creator>
      <dc:date>2017-05-05T17:29:28Z</dc:date>
    </item>
  </channel>
</rss>

