<?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: In a table powered by a stats count search, can you help me display status codes as column headings? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451005#M127724</link>
    <description>&lt;P&gt;Hi @woodcock. Thank you for coming back to me with this. &lt;/P&gt;

&lt;P&gt;All the columns now work except for the Successful column. All figures shown are zero, but there are figures in the successful code columns.&lt;/P&gt;

&lt;P&gt;Once again, many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris &lt;/P&gt;</description>
    <pubDate>Sun, 03 Mar 2019 13:56:58 GMT</pubDate>
    <dc:creator>IRHM73</dc:creator>
    <dc:date>2019-03-03T13:56:58Z</dc:date>
    <item>
      <title>In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450987#M127706</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;

&lt;P&gt;I wonder whether someone can help me please.&lt;/P&gt;

&lt;P&gt;I've put together the following query...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;w2_wmf(RequestCompleted)`request.detail.Context="*test"
| dedup eventId
| rename request.ClientId as ClientID
| stats count(eval('detail.statusCode')) as "All", sum(eval('detail.statusCode'&amp;lt;=303)) as "Successful", sum(eval('detail.statusCode'&amp;gt;303)) as "Unsuccessful" by ClientID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;...which outputs as follows:&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;ClientID&lt;/STRONG&gt;  &lt;STRONG&gt;All&lt;/STRONG&gt;   &lt;STRONG&gt;Successful&lt;/STRONG&gt;  &lt;STRONG&gt;Unsuccessful&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;
1111111                      3              2                               1&lt;/P&gt;

&lt;P&gt;What I'd like to do is to expand this and then show all the status codes as column headings after the "Unsuccessful" column heading with the respective counts, but for the life of me, I can't find the solution.&lt;/P&gt;

&lt;P&gt;Could someone possible look into this and offer some guidance on how I may be able to do this?&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 11 Feb 2019 09:25:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450987#M127706</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-11T09:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450988#M127707</link>
      <description>&lt;P&gt;Like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;w2_wmf(RequestCompleted)`request.detail.Context="*test"
| dedup eventId
| rename request.ClientID as ClientID detail.statusCode AS statusCode
| eval statusCode = "bugfix" . statusCode
| chart count BY ClientID statusCode 
| addtotals fieldname="All" 
| eval Successful = 0 
| foreach 1* 2* 300 301 302 303 
    [ eval Successful = Successful + coalesce('&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;', 0) ] 
| eval Unsuccessful = All - Successful 
| table ClientID All Successful Unsuccessful *
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Feb 2019 09:51:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450988#M127707</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-11T09:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450989#M127708</link>
      <description>&lt;P&gt;Hi @woodcock. Thank you for this.&lt;/P&gt;

&lt;P&gt;The columns are as I wanted which is great, but the totals of the "Successful" is showing the same figure for all ClientID's which is incorrect and unfortunately the "All" and "Unsuccessful" columns are blank.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 11 Feb 2019 10:04:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450989#M127708</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-11T10:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450990#M127709</link>
      <description>&lt;P&gt;Quite correct, line #5 was wrong.  I have edited and fixed it.  Try now.  That is what I get for doing SPL in my head.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Feb 2019 10:23:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450990#M127709</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-11T10:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450991#M127710</link>
      <description>&lt;P&gt;Hi @woodcock. Sorry I thought this had worked.&lt;/P&gt;

&lt;P&gt;But Unfortunately the "Successful" and "Unsuccessful", although they have figures in, they are incorrect.&lt;/P&gt;

&lt;P&gt;The issue appears to be the "Successful" column which then renders the "Unsuccessful" column incorrect when the calculation takes place.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 11 Feb 2019 10:41:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450991#M127710</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-11T10:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450992#M127711</link>
      <description>&lt;P&gt;Are you absolutely sure about that.  Take a look at the logic.  It is bulletproof.  How are you validating it?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 00:09:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450992#M127711</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-12T00:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450993#M127712</link>
      <description>&lt;P&gt;Hi @woodcock. Thank you for coming back to me with this.&lt;/P&gt;

&lt;P&gt;Yes I've re-run the code again, and split it down line by line yesterday afternoon.&lt;/P&gt;

&lt;P&gt;I know that that it's the "Successful" column that's incorrect because although I have 53 individual Client ID's, they all show 1206 in the "Successful" column which is incorrect.&lt;/P&gt;

&lt;P&gt;In addition, when you look at the the first ClientID, the "All" column shows 45 separate events, yet the "Successful is shown as 1206.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 07:26:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450993#M127712</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-12T07:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450994#M127713</link>
      <description>&lt;P&gt;OK, that did it.  I had an error and instead of adding for example, the &lt;EM&gt;value&lt;/EM&gt; of field &lt;CODE&gt;301&lt;/CODE&gt;, it was actually adding &lt;CODE&gt;301&lt;/CODE&gt;.  I edited it again and fixed it.  It will work now.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 07:32:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450994#M127713</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-12T07:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450995#M127714</link>
      <description>&lt;P&gt;Hi @woodcock. Thank you for coming back to me so quickly with this,&lt;/P&gt;

&lt;P&gt;Unfortunately the "Successful" and "Unsuccessful" are now blank.&lt;/P&gt;

&lt;P&gt;It's certainly a tricky one is this. I've been working on it for a couple of days now.&lt;/P&gt;

&lt;P&gt;Kind Regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 08:20:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450995#M127714</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-12T08:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450996#M127715</link>
      <description>&lt;P&gt;OK, I actually tested it this time and something about the fields beginning with numbers is breaking the &lt;CODE&gt;foreach&lt;/CODE&gt;.  This will definitely work.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 08:53:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450996#M127715</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-12T08:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450997#M127716</link>
      <description>&lt;P&gt;Hi @woodcock. Thank you for this.&lt;/P&gt;

&lt;P&gt;I'm running this through the default "Search &amp;amp; Reporting", but I'm still receiving the blank columns as before. Not sure whether it helps, but I'm using V6.5.7 .&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 09:59:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450997#M127716</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-12T09:59:29Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450998#M127717</link>
      <description>&lt;P&gt;ARGH.  Only have the &lt;CODE&gt;bugfix&lt;/CODE&gt; part got merged into the updated answer.  Try this final update.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:05:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450998#M127717</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-12T10:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450999#M127718</link>
      <description>&lt;P&gt;Hi @woodcock. Thank you for this.&lt;/P&gt;

&lt;P&gt;Unfortunately though, still getting blank columns I'm afraid.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris &lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 10:19:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/450999#M127718</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-12T10:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451000#M127719</link>
      <description>&lt;P&gt;I found another typo and fixed it.  Does it work now?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 03:03:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451000#M127719</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-13T03:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451001#M127720</link>
      <description>&lt;P&gt;Hi @woodcock.&lt;/P&gt;

&lt;P&gt;I'm so sorry to have taken so long to come back to you. I had to take some days away. I've tried the query and unfortunately the columns are blank as before. &lt;/P&gt;

&lt;P&gt;The issue seems to be around here:&lt;/P&gt;

&lt;P&gt;| foreach bugfix1* bugfix2* bugfix300 bugfix301 bugfix302 bugfix303 &lt;BR /&gt;
[ eval Successful = Successful + '&amp;lt;&amp;gt;' ] &lt;/P&gt;

&lt;P&gt;Because I've stripped back the code and up to this point the Successful column does show the correct value of zero.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 07:37:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451001#M127720</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-02-18T07:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451002#M127721</link>
      <description>&lt;P&gt;Dummy encoding should do the trick&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;w2_wmf(RequestCompleted)`request.detail.Context="*test"
 | dedup eventId
 | rename request.ClientId as ClientID, detail.statusCode as Status
 | eval X_{Status}=1
 | stats count as Total sum(X_*) as X_* by ClientID
 | rename X_* as *
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That will give you the total for each client id and then a column for each status code with the number of occurrences of each code.&lt;/P&gt;

&lt;P&gt;Does that work for you?  The 'dummy encoding' technique of eval {FIELDNAME}=1 will create new event columns for all values found in that column, so is useful for when the data variants are limited&lt;/P&gt;

&lt;P&gt;To give an example of how this works using the standard Splunk access logs, if you have access to the _internal index, then you can do this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=*access
| eval X_{status}=1
| stats count as Total sum(X_*) as X_* by source, user
| rename X_* as *
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;which would give you something along the lines of&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source  user    Total   200 201 204 303 404
/opt/splunk/var/log/splunk/splunkd_access.log   -   3       3            
/opt/splunk/var/log/splunk/splunkd_access.log   admin   70  70               
/opt/splunk/var/log/splunk/splunkd_access.log   splunk-system-user  1358    1328    27  2       1
/opt/splunk/var/log/splunk/splunkd_ui_access.log    -   63  62          1    
/opt/splunk/var/log/splunk/splunkd_ui_access.log    admin   1186    1158    25          3
/opt/splunk/var/log/splunk/web_access.log   -   3   3                
/opt/splunk/var/log/splunk/web_access.log   admin   11  11               
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 27 Feb 2019 01:29:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451002#M127721</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2019-02-27T01:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451003#M127722</link>
      <description>&lt;P&gt;If you still want the successful/unsuccessful numbers in there as well, then leave in your sum(eval...) stats items, i.e.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats count as Total sum(eval(Status&amp;lt;=303)) as "Successful", sum(eval(Status&amp;gt;303)) as "Unsuccessful" sum(X_*) as X_* by ClientID
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or should the 303 really be &amp;lt;400 and &amp;gt;=400 - unless you're sure you'll only return up to 303, but there are more in the 300 range above 303.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Feb 2019 01:46:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451003#M127722</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2019-02-27T01:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451004#M127723</link>
      <description>&lt;P&gt;OK, I found one more but and fixed the original answer.  It should work now.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2019 02:39:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451004#M127723</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-03-03T02:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451005#M127724</link>
      <description>&lt;P&gt;Hi @woodcock. Thank you for coming back to me with this. &lt;/P&gt;

&lt;P&gt;All the columns now work except for the Successful column. All figures shown are zero, but there are figures in the successful code columns.&lt;/P&gt;

&lt;P&gt;Once again, many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris &lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2019 13:56:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451005#M127724</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2019-03-03T13:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: In a table powered by a stats count search, can you help me display status codes as column headings?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451006#M127725</link>
      <description>&lt;P&gt;So does it work or not?&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2019 14:52:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/In-a-table-powered-by-a-stats-count-search-can-you-help-me/m-p/451006#M127725</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-03-03T14:52:42Z</dc:date>
    </item>
  </channel>
</rss>

