<?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: Can segmentation be done for sourcetypes and indexes? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170555#M186364</link>
    <description>&lt;P&gt;I am doing it the same way as martin mentioned it for the sourcetype. But I get this error &lt;/P&gt;

&lt;P&gt;Search peer aabbcc has the following message: received event for unconfigured/disabled/deleted index='replace_index_with_segment_4_from_source' with source='source::/var/log/splunk/test_web/Cisco/.../newtest01.log' host='host::abc' sourcetype='sourcetype::Cisco'&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 16:02:17 GMT</pubDate>
    <dc:creator>theouhuios</dc:creator>
    <dc:date>2020-09-28T16:02:17Z</dc:date>
    <item>
      <title>Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170548#M186357</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;I have a syslog server which is being used to collect various network oriented data. For example if its a Aruba device then its location is &lt;CODE&gt;/var/log/splunk/&amp;lt;deviceType&amp;gt;/&amp;lt;deviceName&amp;gt;/&amp;lt;devicename&amp;gt;.log&lt;/CODE&gt; and for Cisco devices its &lt;CODE&gt;/var/log/splunk/&amp;lt;deviceType&amp;gt;/&amp;lt;deviceName&amp;gt;/&amp;lt;devicename&amp;gt;.log&lt;/CODE&gt; . What I have now is &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host_segment=5
sourcetype =&amp;lt;deviceType&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; host_segment=5
 sourcetype = &amp;lt;deviceType&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;So if I have data from about 20-30 different devices I need to write the same number of stanza's in inputs.conf. To avoid this can I do segmentation based on sourcetype and host so that I can use just one stanza? Something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host_segment=5
soucetype_segment=4
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any ideas?&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Update:&lt;/STRONG&gt; Below config testing is for index along with sourcetype extraction.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;transforms.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[replace_index_with_segment_4_from_source]
SOURCE_KEY = MetaData:Source
REGEX = ^source::(?:/[^/]+){3}/([^/]+)/
FORMAT = index::$1
DEST_KEY = _MetaData:Index



[replace_sourcetype_with_segment_5_from_source]
SOURCE_KEY = MetaData:Source
REGEX = ^source::(?:/[^/]+){4}/([^/]+)/
FORMAT = sourcetype::$1
DEST_KEY = MetaData:Sourcetype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;props.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[replace_sourcetype_with_segment_5_from_source]
TRANSFORMS-replace = replace_sourcetype_with_segment_5_from_source

[replace_sourcetype_with_segment_5_from_source]
TRANSFORMS-replaceindex = replace_index_with_segment_4_from_source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;inputs.conf&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[monitor:///home/K23780/splunk/.../.../.../*.log]
disabled = false
followTail = 0
host_segment=6
sourcetype = replace_sourcetype_with_segment_5_from_source
#index= replace_index_with_segment_4_from_source
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Feb 2014 15:23:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170548#M186357</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2014-02-28T15:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170549#M186358</link>
      <description>&lt;P&gt;How about using following (one input stanza for each sourcetype)&lt;/P&gt;

&lt;P&gt;[monitor:///var/log/splunk/Aruba/*/*.log]&lt;BR /&gt;
disabled = false&lt;BR /&gt;
followTail = 0&lt;BR /&gt;
host_segment=5&lt;BR /&gt;
sourcetype = Aruba&lt;/P&gt;

&lt;P&gt;[monitor:///var/log/splunk/Cisco/*/*.log]&lt;BR /&gt;
disabled = false&lt;BR /&gt;
followTail = 0&lt;BR /&gt;
host_segment=5&lt;BR /&gt;
sourcetype = Cisco&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 16:07:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170549#M186358</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-02-28T16:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170550#M186359</link>
      <description>&lt;P&gt;I am doing the same as of now. Its just that I have about 35 stanzas with more to come. So I will have to keep updating inputs.conf file for each device type. But it I can do segmenting for host and sourcetype then I can set something like &lt;/P&gt;

&lt;P&gt;[monitor:///var/log/splunk/.../.../.log] &lt;BR /&gt;
disabled = false &lt;BR /&gt;
followTail = 0 &lt;BR /&gt;
host_segment=5 &lt;BR /&gt;
sourcetype_segment = 4 &lt;BR /&gt;
and that will be the only stanza I would need .&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:00:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170550#M186359</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2020-09-28T16:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170551#M186360</link>
      <description>&lt;P&gt;The comment window ate up the '*' I put earliest. Updated it.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 17:06:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170551#M186360</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-02-28T17:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170552#M186361</link>
      <description>&lt;P&gt;You could do something like this (amended to include index override):&lt;/P&gt;

&lt;P&gt;inputs.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[monitor:///var/log/splunk/*/*/*/*.log]
disabled = false
followTail = 0
host_segment=6
sourcetype = replace_sourcetype_with_segment_4_and_index_with_segment_5_from_source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[replace_sourcetype_with_segment_4_and_index_with_segment_5_from_source]
TRANSFORMS-replaceSourcetype = replace_sourcetype_with_segment_4_from_source
TRANSFORMS-replaceIndex = replace_index_with_segment_5_from_source
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[replace_sourcetype_with_segment_4_from_source]
SOURCE_KEY = MetaData:Source
REGEX = ^source::(?:/[^/]+){3}/([^/]+)/
FORMAT = sourcetype::$1
DEST_KEY = MetaData:Sourcetype

[replace_index_with_segment_5_from_source]
SOURCE_KEY = MetaData:Source
REGEX = ^source::(?:/[^/]+){4}/([^/]+)/
FORMAT = $1
DEST_KEY = _MetaData:Index
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That should take a look at your source's fourth segment and write it into your sourcetype, and write segment 5 into the index.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 18:48:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170552#M186361</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-02-28T18:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170553#M186362</link>
      <description>&lt;P&gt;Works very well. Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 19:15:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170553#M186362</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2014-02-28T19:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170554#M186363</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/172708"&gt;@martin_mueller&lt;/a&gt;, Can I do the same for the Index too. In case I add index at /var/log/splunk/test-index/.../.../.log as the path name. Would it be possible to even extract the index from it? &lt;/P&gt;

&lt;P&gt;[replace_index_with_segment_4_from_source]&lt;BR /&gt;
SOURCE_KEY = MetaData:Source&lt;BR /&gt;
REGEX = ^source::(?:/[^/]+){3}/([^/]+)/&lt;BR /&gt;
FORMAT = index::$1&lt;BR /&gt;
DEST_KEY = _MetaData:Index&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:02:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170554#M186363</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2020-09-28T16:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170555#M186364</link>
      <description>&lt;P&gt;I am doing it the same way as martin mentioned it for the sourcetype. But I get this error &lt;/P&gt;

&lt;P&gt;Search peer aabbcc has the following message: received event for unconfigured/disabled/deleted index='replace_index_with_segment_4_from_source' with source='source::/var/log/splunk/test_web/Cisco/.../newtest01.log' host='host::abc' sourcetype='sourcetype::Cisco'&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:02:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170555#M186364</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2020-09-28T16:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170556#M186365</link>
      <description>&lt;P&gt;Do post the corresponding inputs.conf, I suspect you set index=replace... there while your stanza in transforms.conf is looking for sourcetype=...&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 20:21:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170556#M186365</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-04T20:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170557#M186366</link>
      <description>&lt;P&gt;[monitor:///var/log/splunk/.../.../.../*.log]&lt;BR /&gt;
disabled = false&lt;BR /&gt;
followTail = 0&lt;BR /&gt;
host_segment=6&lt;BR /&gt;
sourcetype = replace_sourcetype_with_segment_5_from_source&lt;BR /&gt;
index= replace_index_with_segment_4_from_source&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:02:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170557#M186366</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2020-09-28T16:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170558#M186367</link>
      <description>&lt;P&gt;How do you trigger the transforms.conf &lt;CODE&gt;[replace_index_with_segment_4_from_source]&lt;/CODE&gt; stanza from your props.conf?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 21:03:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170558#M186367</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-04T21:03:29Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170559#M186368</link>
      <description>&lt;P&gt;as [replace_index_with_segment_4_from_source]&lt;BR /&gt;
TRANSFORMS-replace = replace_index_with_segment_4_from_source&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:02:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170559#M186368</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2020-09-28T16:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170560#M186369</link>
      <description>&lt;P&gt;Yeah, that's not going to match your incoming events because that's looking for a &lt;EM&gt;sourcetype&lt;/EM&gt; called replace_index_with_segment_4_from_source.&lt;/P&gt;

&lt;P&gt;If you always want to grab the index from segment 4 for sourcetype replace_sourcetype_with_segment_5_from_source than you can drop that TRANSFORMS-replace into its transforms.conf stanza.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:02:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170560#M186369</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2020-09-28T16:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170561#M186370</link>
      <description>&lt;P&gt;Isn't the replace just a stanza name&lt;BR /&gt;
Or is it a function which is mentioning the source to extract the values. Both source type and index are from the source. Can you please share any documentation on how the replace function is working.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 12:18:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170561#M186370</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2014-03-05T12:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170562#M186371</link>
      <description>&lt;P&gt;By writing &lt;CODE&gt;[foo]&lt;/CODE&gt; in props.conf you specify properties for sourcetype "foo". As a result, your &lt;CODE&gt;TRANSFORMS-replace = ...&lt;/CODE&gt; is only applied to events with a sourcetype of "replace_index_with_segment_4_from_source". That doesn't match your events because their sourcetype is "replace_sourcetype_with_segment_5_from_source"&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:02:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170562#M186371</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2020-09-28T16:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170563#M186372</link>
      <description>&lt;P&gt;So how does the inputs and props look? I shouldn't mention the index in inputs.conf file ?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 13:42:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170563#M186372</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2014-03-05T13:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170564#M186373</link>
      <description>&lt;P&gt;Updated the original question with the configs.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 13:49:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170564#M186373</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2014-03-05T13:49:24Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170565#M186374</link>
      <description>&lt;P&gt;That updated props.conf defines &lt;CODE&gt;TRANSFORMS-replace&lt;/CODE&gt; twice for sourcetype &lt;CODE&gt;replace_sourcetype_with_segment_5_from_source&lt;/CODE&gt;, change one to &lt;CODE&gt;TRANSFORMS-replaceIndex&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 14:30:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170565#M186374</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-05T14:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170566#M186375</link>
      <description>&lt;P&gt;It still fails for the index. Goes into default. Should I mention anything for the index in inputs.conf?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 14:39:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170566#M186375</guid>
      <dc:creator>theouhuios</dc:creator>
      <dc:date>2014-03-05T14:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Can segmentation be done for sourcetypes and indexes?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170567#M186376</link>
      <description>&lt;P&gt;Any index you put into the inputs.conf is going to be overwritten by the transforms.conf. Your issue right now appears to be that the transforms.conf stanza isn't being executed.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 15:01:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Can-segmentation-be-done-for-sourcetypes-and-indexes/m-p/170567#M186376</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2014-03-05T15:01:15Z</dc:date>
    </item>
  </channel>
</rss>

