<?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 can I create a ranking based on a count per week by a field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330831#M98473</link>
    <description>&lt;P&gt;Good to go! Thx again and I greatly appreciate all of the help in hammering this out to what I was looking for.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Dec 2017 21:32:28 GMT</pubDate>
    <dc:creator>jwalzerpitt</dc:creator>
    <dc:date>2017-12-07T21:32:28Z</dc:date>
    <item>
      <title>How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330816#M98458</link>
      <description>&lt;P&gt;I am looking to do the following:&lt;/P&gt;

&lt;P&gt;1) Create a table based on a count of blocks by week number and zone&lt;/P&gt;

&lt;P&gt;I have the following search for that:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="foo" sourcetype=foo
| ip_cidr.csv cidr_range as src
| eval firewall=coalesce(firewall,"null")
| eval context=coalesce(context,"null")
| eval zone=coalesce(zone,"null")
| eval week_month=strftime(_time, "%V") 
| bucket span=7d _time
| stats count by week_month,zone
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2) Assign a rank for each zone by sorting from highest count to lowest with 1 being assigned to the zone with the highest count, 2 assigned to the zone with the second highest count, etc., i.e.:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Week 43 Rank
    Zone 1 - 5
    Zone 2-  9
    Zone 3 - 1
    Zone 4 - 7

Week 44 Rank
    Zone 1 - 15
    Zone 2-  2
    Zone 3 - 11
    Zone 4 - 3
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I'd like to see the rank for each zone on a weekly basis&lt;/P&gt;

&lt;P&gt;Then I'd like to compute the average rank of each zone based on their rankings per week, like so:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Average Rank
    Zone 1 - 3
    Zone 2-  21
    Zone 3 - 10
    Zone 4 - 1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 13:53:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330816#M98458</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T13:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330817#M98459</link>
      <description>&lt;P&gt;A couple of questions -&lt;BR /&gt;
In your base query, you do this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | eval firewall=coalesce(firewall,"null")
 | eval context=coalesce(context,"null")
 | eval zone=coalesce(zone,"null")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But then you never use those fields. Is the "rank" intended to be a sum of the instances where &lt;CODE&gt;firewall&lt;/CODE&gt; OR &lt;CODE&gt;context&lt;/CODE&gt;OR &lt;CODE&gt;zone&lt;/CODE&gt; are not null?&lt;/P&gt;

&lt;P&gt;For the second part of  your request, do you want &lt;EM&gt;all&lt;/EM&gt; weeks in the data to be listed, or do you want to be able to specify a week number (passed in with a token, presumably), and see the data for that week? I have a good sense of how to do the latter, not so much for the former. &lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 15:51:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330817#M98459</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-12-07T15:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330818#M98460</link>
      <description>&lt;P&gt;I want to use zone (as it's more specific than firewall or context, but I have those broken out in case I need to use them), and I'd like to have all weeks in the data be listed (as I can see from week to week at a glance where each zone is ranked).&lt;/P&gt;

&lt;P&gt;However, it would be great to implement being able to specify a week number passed in a token to see data for that week as well.&lt;/P&gt;

&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 16:00:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330818#M98460</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T16:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330819#M98461</link>
      <description>&lt;P&gt;Add this to your existing search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| sort 0 - count
| streamstats count AS rank BY week_month zone
| eventstats first(rank) AS rank BY count week_month zone
| stats avg(rank) BY zone
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Dec 2017 16:24:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330819#M98461</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-12-07T16:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330820#M98462</link>
      <description>&lt;P&gt;Thx for the reply and the search. A few quick questions&lt;/P&gt;

&lt;P&gt;1) Is it possible to create an inverse so that the lowest avg ranking (avg(rank)) is listed as 1, second lowest average is listed as 2, etc.? &lt;/P&gt;

&lt;P&gt;2) Is it possible to see the weekly data for each zone?&lt;/P&gt;

&lt;P&gt;3) How hard would it be to compare a zone’s week against it’s previous week to see what the % change is (either up or down?) So for Zone 1 I’d like to compare week 2 to week 1 to see what the % change is, then week 3 to week 2, and so on. Each zone would have a % comparison allowing me to see the % up or down for each zone.&lt;/P&gt;

&lt;P&gt;Thx again&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 17:11:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330820#M98462</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T17:11:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330821#M98463</link>
      <description>&lt;P&gt;1) Remove the &lt;CODE&gt;-&lt;/CODE&gt; in the &lt;CODE&gt;sort&lt;/CODE&gt;.&lt;BR /&gt;
2) Change the last &lt;CODE&gt;stats&lt;/CODE&gt; to &lt;CODE&gt;eventstats&lt;/CODE&gt;.&lt;BR /&gt;
3) Check out the &lt;CODE&gt;delta&lt;/CODE&gt; and &lt;CODE&gt;autoregress&lt;/CODE&gt; commands.&lt;/P&gt;

&lt;P&gt;Do click &lt;CODE&gt;accept&lt;/CODE&gt; to close the question if the answer worked.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 18:11:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330821#M98463</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-12-07T18:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330822#M98464</link>
      <description>&lt;P&gt;Thx - I did click &lt;STRONG&gt;accept&lt;/STRONG&gt; as the answer worked&lt;/P&gt;

&lt;P&gt;1) I did remove the &lt;STRONG&gt;-&lt;/STRONG&gt; in the sort as below, but I'm not seeing the inverse&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| sort 0 count
| streamstats count AS rank BY week_month zone
| eventstats first(rank) AS rank BY count week_month zone
| stats avg(rank) BY zone
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;is the avg(rank) based on the count using streamstats/eventstats? I dumped seven days of data into Excel and mocked up what I'm looking for and I'm seeing a different outcome re: rank/avg rank&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    11/30/2017  12/1/2017   12/2/2017   12/3/2017   12/4/2017   12/5/2017   12/6/2017   12/7/2017   
Zone 1  0   44  86685   31  46  13  25  13  
Zone 2  2   511 457 457 509 562 509 509 
Zone 3  0   4263    803 803 3803    837 805 803 
Zone 4  98  543 719 272 552 751 1341    769 
Zone 5  3648    2428    1856    1331    3804    3439    2968    250 
Zone 6  169 165 165 165 141 179 528 14  
Zone 7  254 222 174 154 250 248 224 0   
Zone 8  340 395 320 130 435 450 360 0   
Zone 9  292 801 401 360 505 451 481 434 
Zone 10 172 129 59  59  502 214 186 215 
Zone 11 118 157 354 189 158 189 232 40  

Rank:                                   
    Day 1   Day 2   Day 3   Day 4   Day 5   Day 6   Day 7       Avg Ranking
Zone 1  10  11  1   11  11  11  11      9.4
Zone 2  9   5   5   3   4   4   5       5.0
Zone 3  10  1   3   2   2   2   3       3.3
Zone 4  8   4   4   5   3   3   2       4.1
Zone 5  1   2   2   1   1   1   1       1.3
Zone 6  6   8   10  7   10  10  4       7.9
Zone 7  4   7   9   8   8   7   9       7.4
Zone 8  2   6   8   9   7   6   7       6.4
Zone 9  3   3   6   4   5   5   6       4.6
Zone 10 5   10  11  10  6   8   10      8.6
Zone 11 7   9   7   6   9   9   8       7.9
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 18:58:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330822#M98464</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T18:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330823#M98465</link>
      <description>&lt;P&gt;Also, dumping out to a table in Splunk, I'm seeing the same zone listed multiple times per week, whereas I would think that each zone should only be listed once. Perhaps there's an issue with my command &lt;CODE&gt;| eval week_month=strftime(_time, "%V")&lt;/CODE&gt;?&lt;/P&gt;

&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 19:04:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330823#M98465</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T19:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330824#M98466</link>
      <description>&lt;P&gt;I did not assess your original search in any way and it appears that it is defective.  Have you addressed all of the concerns by @elliotproebstel ?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 19:17:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330824#M98466</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-12-07T19:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330825#M98467</link>
      <description>&lt;P&gt;I have and I'm waiting for his reply&lt;/P&gt;

&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 19:19:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330825#M98467</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T19:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330826#M98468</link>
      <description>&lt;P&gt;The following is meant as an intermediate step to see if we are getting things right. It's a little tough, since I don't have your source data to test on...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your base search...
| sort - week_month count 
| streamstats count AS rank BY week_month 
| where rank&amp;lt;=5
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I expect that to return the zones ranked 1-5 for each week, listed in order by week. Let me know if that part works.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 20:37:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330826#M98468</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-12-07T20:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330827#M98469</link>
      <description>&lt;P&gt;My search is now set as below and returns the zones ranked 1-5 for each week, listed in order by week (I had a typo in which I didn't the lookup command for the second line).&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="foo" sourcetype=foo host="foo
 | lookup ip_cidr.csv cidr_range as src
 | eval firewall=coalesce(firewall,"null")
 | eval context=coalesce(context,"null")
 | eval zone=coalesce(zone,"null")
 | eval week_month=strftime(_time, "%V") 
 | bucket span=7d _time
 | stats count by week_month,zone
 | sort - week_month count 
 | streamstats count AS rank BY week_month 
 | where rank&amp;lt;=5
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Dec 2017 21:06:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330827#M98469</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T21:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330828#M98470</link>
      <description>&lt;P&gt;Great - so now I have a question about the tables you're seeking. In this snippet:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; Week 43 Rank
     Zone 1 - 5
     Zone 2-  9
     Zone 3 - 1
     Zone 4 - 7
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Is &lt;CODE&gt;Zone 1&lt;/CODE&gt; the name of one of your zones, and &lt;CODE&gt;5&lt;/CODE&gt; is the ranking for that zone for that week?&lt;BR /&gt;
Or are  you saying that in Week 43, the #1 ranked zone is named &lt;CODE&gt;5&lt;/CODE&gt;? At first, I was thinking you meant the latter, but now I'm thinking you meant the first interpretation. If the first, then I think this snippet will meet your goal for #2:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="foo" sourcetype=foo host="foo
| lookup ip_cidr.csv cidr_range as src
| eval firewall=coalesce(firewall,"null")
| eval context=coalesce(context,"null")
| eval zone=coalesce(zone,"null")
| eval week_month=strftime(_time, "%V") 
| bucket span=7d _time
| stats count by week_month,zone
| sort - week_month count 
| streamstats count AS rank BY week_month 
| fields - count 
| sort week_month zone
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Dec 2017 21:14:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330828#M98470</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-12-07T21:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330829#M98471</link>
      <description>&lt;P&gt;Using the search below (after the last eval line), I see a table of week_month, zone, count, rank, with the sort order being week_month and rank (and obviously count is sorted as well from highest to smallest)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats count by week_month,zone
| sort - week_month count 
| streamstats count AS rank BY week_month
| sort week_month rank
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thx&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:10:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330829#M98471</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2020-09-29T17:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330830#M98472</link>
      <description>&lt;P&gt;Cool, so are you all set? If not, the following snippet should give you the first of the excel-mocked tables you mentioned below:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[ your base search ]
| sort - week_month count 
| streamstats count AS rank BY week_month 
| fields - count 
| sort week_month zone 
| eval week_month="Week ".week_month 
|xyseries zone week_month rank 
| fillnull value="-" 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Dec 2017 21:27:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330830#M98472</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-12-07T21:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330831#M98473</link>
      <description>&lt;P&gt;Good to go! Thx again and I greatly appreciate all of the help in hammering this out to what I was looking for.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 21:32:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330831#M98473</guid>
      <dc:creator>jwalzerpitt</dc:creator>
      <dc:date>2017-12-07T21:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330832#M98474</link>
      <description>&lt;P&gt;Glad to help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 21:33:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330832#M98474</guid>
      <dc:creator>elliotproebstel</dc:creator>
      <dc:date>2017-12-07T21:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can I create a ranking based on a count per week by a field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330833#M98475</link>
      <description>&lt;P&gt;If you fixed the first part then my solution should work now.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 22:21:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-create-a-ranking-based-on-a-count-per-week-by-a-field/m-p/330833#M98475</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-12-07T22:21:59Z</dc:date>
    </item>
  </channel>
</rss>

