<?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: Timechart Command to calculate totals for 7 days in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30795#M6292</link>
    <description>&lt;P&gt;even this doesn't work.  As soon as I put the | chart command nothing happens.  host="ynfs1" sourcetype=userdiskusage | rex field=_raw "(?&lt;SPACE&gt;[d]+)s*/home/(?&lt;USERNAME&gt;S+)" max_match=1000 | search NOT UserName="shares" | bucket _time span=1d as day | eval day=strftime(day,"%Y-%m-%d") | head 20 | chart sum(Space) by UserName&lt;/USERNAME&gt;&lt;/SPACE&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 10:12:09 GMT</pubDate>
    <dc:creator>gnovak</dc:creator>
    <dc:date>2020-09-28T10:12:09Z</dc:date>
    <item>
      <title>Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30783#M6280</link>
      <description>&lt;P&gt;I have a search that I'm using to populate some charts in a dashboard.  The search is checking a log and charting the top 20 users who have used the most disk space in their home directories.  It works great for a 24 hour period...However I can't seem to get it to work for longer periods such as 7 days or more.&lt;/P&gt;

&lt;P&gt;What I'd like to do is that if you choose 7 days, it would display the top 20 users who were using the most space after pretty much calculating space usage for 7 days per user.  You'd be able to see the user's space usage over a 7 day period.  This would allow you to see when a spike may have occurred that caused a disk issue.&lt;/P&gt;

&lt;P&gt;The search I have right now is :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host="ynfs1" sourcetype=userdiskusage earliest=-1d@d latest=-0d@d | rex field=_raw "(?&amp;lt;Space&amp;gt;[\d]+)\s*\/home\/(?&amp;lt;UserName&amp;gt;\S+)" max_match=1000 | search NOT UserName="shares" | table UserName Space | sort -Space | head 20
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This search is used to create an area chart on a dashboard.  I have a time range picker to change the time from 24 hours to 7 days, but when I do the results are not what I would like.  Nothing happens for the most part.  Here's my dashboard code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;view template="dashboard.html"&amp;gt;
  &amp;lt;label&amp;gt;YNFS1 Space Usage&amp;lt;/label&amp;gt;
  &amp;lt;module name="AccountBar" layoutPanel="navigationHeader"/&amp;gt;
  &amp;lt;module name="AppBar" layoutPanel="navigationHeader"/&amp;gt;

  &amp;lt;module name="Message" layoutPanel="messaging"&amp;gt;
    &amp;lt;param name="filter"&amp;gt;*&amp;lt;/param&amp;gt;
    &amp;lt;param name="clearOnJobDispatch"&amp;gt;False&amp;lt;/param&amp;gt;
    &amp;lt;param name="maxSize"&amp;gt;1&amp;lt;/param&amp;gt;
  &amp;lt;/module&amp;gt;

  &amp;lt;module name="TimeRangePicker" layoutPanel="panel_row1_col1"&amp;gt;
    &amp;lt;param name="searchWhenChanged"&amp;gt;True&amp;lt;/param&amp;gt;
    &amp;lt;param name="default"&amp;gt;Last 24 hours&amp;lt;/param&amp;gt;
      &amp;lt;module name="HiddenSavedSearch" layoutPanel="panel_row2_col1" group="Space Usage by user over a given time" autoRun="True"&amp;gt;
        &amp;lt;param name="savedSearch"&amp;gt;Andrew ynfs1 search&amp;lt;/param&amp;gt;
        &amp;lt;module name="HiddenChartFormatter"&amp;gt;
          &amp;lt;param name="charting.chart"&amp;gt;area&amp;lt;/param&amp;gt;
          &amp;lt;param name="chart.stackMode"&amp;gt;stacked&amp;lt;/param&amp;gt;
          &amp;lt;param name="secondaryAxisTitle.text"&amp;gt;Space&amp;lt;/param&amp;gt;
          &amp;lt;module name="JobProgressIndicator"&amp;gt;&amp;lt;/module&amp;gt;
            &amp;lt;module name="FlashChart"&amp;gt;
              &amp;lt;param name="width"&amp;gt;100%&amp;lt;/param&amp;gt;
              &amp;lt;param name="height"&amp;gt;400px&amp;lt;/param&amp;gt;
            &amp;lt;/module&amp;gt;
          &amp;lt;/module&amp;gt;
          &amp;lt;module name="ViewRedirectorLink"&amp;gt;
            &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
            &amp;lt;param name="popup"&amp;gt;True&amp;lt;/param&amp;gt;      
          &amp;lt;/module&amp;gt; 
      &amp;lt;/module&amp;gt;
      &amp;lt;module name="HiddenSavedSearch" layoutPanel="panel_row3_col1" group="Space Usage by user over a given time" autoRun="True"&amp;gt;
        &amp;lt;param name="savedSearch"&amp;gt;Andrew ynfs1 search&amp;lt;/param&amp;gt;
        &amp;lt;module name="HiddenChartFormatter"&amp;gt;
          &amp;lt;param name="charting.chart"&amp;gt;pie&amp;lt;/param&amp;gt;
          &amp;lt;module name="JobProgressIndicator"&amp;gt;
            &amp;lt;module name="FlashChart"&amp;gt;
              &amp;lt;param name="width"&amp;gt;100%&amp;lt;/param&amp;gt;
              &amp;lt;param name="height"&amp;gt;400px&amp;lt;/param&amp;gt;
             &amp;lt;/module&amp;gt;
          &amp;lt;/module&amp;gt;
          &amp;lt;module name="ViewRedirectorLink"&amp;gt;
            &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
            &amp;lt;param name="popup"&amp;gt;True&amp;lt;/param&amp;gt;      
          &amp;lt;/module&amp;gt; 
        &amp;lt;/module&amp;gt;
     &amp;lt;/module&amp;gt;
     &amp;lt;module name="HiddenSavedSearch" layoutPanel="panel_row3_col2" group="Space Usage by user over a given time" autoRun="True"&amp;gt;
       &amp;lt;param name="savedSearch"&amp;gt;Andrew ynfs1 search&amp;lt;/param&amp;gt;
       &amp;lt;module name="SimpleResultsTable"&amp;gt;&amp;lt;/module&amp;gt;
       &amp;lt;module name="ViewRedirectorLink"&amp;gt;
         &amp;lt;param name="viewTarget"&amp;gt;flashtimeline&amp;lt;/param&amp;gt;
         &amp;lt;param name="popup"&amp;gt;True&amp;lt;/param&amp;gt;      
       &amp;lt;/module&amp;gt; 
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt; 
&amp;lt;/view&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I've been looking into timechart as I believe I have to use this command to make this happen.  I also tried doing a timechart sum of Space by Username but the results didn't look right.  Any ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 19:51:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30783#M6280</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T19:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30784#M6281</link>
      <description>&lt;P&gt;I think the first issue here is that you hardcoded the timerange into the search. try removing the earliest and latest. That should fix your timerange dropdown issue. Try the following search &lt;/P&gt;

&lt;P&gt;host="ynfs1" sourcetype=userdiskusage | rex field=_raw "(?&lt;SPACE&gt;[\d]+)\s*\/home\/(?&lt;USERNAME&gt;\S+)" max_match=1000 | search NOT UserName="shares" | bucket _time span=1d | eval day=strftime(day,"%Y-%m-%d") | chart sum(Space) over day by UserName&lt;/USERNAME&gt;&lt;/SPACE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:12:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30784#M6281</guid>
      <dc:creator>RicoSuave</dc:creator>
      <dc:date>2020-09-28T10:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30785#M6282</link>
      <description>&lt;P&gt;You should be able to chart this. If you want to have a little more granularity into space usage, change the span to 1h or 1m or whatever you want.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 20:35:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30785#M6282</guid>
      <dc:creator>RicoSuave</dc:creator>
      <dc:date>2011-12-07T20:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30786#M6283</link>
      <description>&lt;P&gt;it just says no results found and the charts are empty.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:06:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30786#M6283</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30787#M6284</link>
      <description>&lt;P&gt;let me try running it manually&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:06:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30787#M6284</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30788#M6285</link>
      <description>&lt;P&gt;my bad run this:&lt;/P&gt;

&lt;P&gt;host="ynfs1" sourcetype=userdiskusage | rex field=_raw "(?&lt;SPACE&gt;[d]+)s*/home/(?&lt;USERNAME&gt;S+)" max_match=1000 | search NOT UserName="shares" | bucket _time span=1d as day | eval day=strftime(day,"%Y-%m-%d") | chart sum(Space) over day by UserName&lt;/USERNAME&gt;&lt;/SPACE&gt;&lt;/P&gt;

&lt;P&gt;I forgot to add the "as day" after bucket _time span=1d It should work now.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:12:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30788#M6285</guid>
      <dc:creator>RicoSuave</dc:creator>
      <dc:date>2020-09-28T10:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30789#M6286</link>
      <description>&lt;P&gt;still not working.  what's the eval day=strftime&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:28:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30789#M6286</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30790#M6287</link>
      <description>&lt;P&gt;ah it looks like your rex field extraction is all lowercase. try this:&lt;/P&gt;

&lt;P&gt;host="ynfs1" sourcetype=userdiskusage | rex field=_raw "(?&lt;SPACE&gt;[d]+)s*/home/(?&lt;USERNAME&gt;S+)" max_match=1000 | search NOT UserName="shares" | bucket _time span=1d as day | eval day=strftime(day,"%Y-%m-%d") | chart sum(space) over day by userame&lt;/USERNAME&gt;&lt;/SPACE&gt;&lt;/P&gt;

&lt;P&gt;strftime: This function takes an epochtime value, X, as the first argument and renders it as a string using the format specified by Y.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:12:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30790#M6287</guid>
      <dc:creator>RicoSuave</dc:creator>
      <dc:date>2020-09-28T10:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30791#M6288</link>
      <description>&lt;P&gt;The search stops producing any results as soon as I do the chart command.  I tried using timechart but didn't seem to get it right.  Also the only results I have is a list of _time and that's it.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:34:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30791#M6288</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30792#M6289</link>
      <description>&lt;P&gt;also i left the hardcoded time range in the search just to see if the charts did work.  my bad&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:34:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30792#M6289</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30793#M6290</link>
      <description>&lt;P&gt;it's not a case issue.  that didn't work&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:38:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30793#M6290</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30794#M6291</link>
      <description>&lt;P&gt;Also what about the | head 20?  How is this search going to show me the top 20 disk hogs over a period of time?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 21:41:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30794#M6291</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T21:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30795#M6292</link>
      <description>&lt;P&gt;even this doesn't work.  As soon as I put the | chart command nothing happens.  host="ynfs1" sourcetype=userdiskusage | rex field=_raw "(?&lt;SPACE&gt;[d]+)s*/home/(?&lt;USERNAME&gt;S+)" max_match=1000 | search NOT UserName="shares" | bucket _time span=1d as day | eval day=strftime(day,"%Y-%m-%d") | head 20 | chart sum(Space) by UserName&lt;/USERNAME&gt;&lt;/SPACE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 10:12:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30795#M6292</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2020-09-28T10:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30796#M6293</link>
      <description>&lt;P&gt;I'm going to look at the Time Based Charting Tools in UI examples for some hints.  ugh!&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:01:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30796#M6293</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T22:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30797#M6294</link>
      <description>&lt;P&gt;what is a typical result for your space field look like?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:08:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30797#M6294</guid>
      <dc:creator>RicoSuave</dc:creator>
      <dc:date>2011-12-07T22:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30798#M6295</link>
      <description>&lt;P&gt;UserName    Space&lt;BR /&gt;
1   bruce   43236824&lt;BR /&gt;
2   fhu 41706896&lt;BR /&gt;
3   lfan    39659892&lt;BR /&gt;
4   hzhou   32397800&lt;BR /&gt;
5   gsp 29841020&lt;BR /&gt;
6   lyuan   29492256&lt;BR /&gt;
7   mkarimi 27565896&lt;BR /&gt;
8   jfu 25898072&lt;BR /&gt;
9   jpfletch    25440672&lt;BR /&gt;
10  mselvi  25278628&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:12:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30798#M6295</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T22:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30799#M6296</link>
      <description>&lt;P&gt;looks like this using the original search i posted.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:12:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30799#M6296</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T22:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30800#M6297</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;host="ynfs1" sourcetype=userdiskusage earliest=-1d@d latest=-0d@d | rex field=_raw "(?&amp;lt;Space&amp;gt;[\d]+)\s*\/home\/(?&amp;lt;UserName&amp;gt;\S+)" max_match=1000 | search NOT UserName="shares" | chart sum(Space) over UserName
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Does that produce anything when typed in exactly?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:18:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30800#M6297</guid>
      <dc:creator>RicoSuave</dc:creator>
      <dc:date>2011-12-07T22:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30801#M6298</link>
      <description>&lt;P&gt;yep i got stuff&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:22:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30801#M6298</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T22:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Timechart Command to calculate totals for 7 days</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30802#M6299</link>
      <description>&lt;P&gt;let me try something&lt;/P&gt;</description>
      <pubDate>Wed, 07 Dec 2011 22:22:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timechart-Command-to-calculate-totals-for-7-days/m-p/30802#M6299</guid>
      <dc:creator>gnovak</dc:creator>
      <dc:date>2011-12-07T22:22:36Z</dc:date>
    </item>
  </channel>
</rss>

