<?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: Splunk Universal Forwarder monitoring in Monitoring Splunk</title>
    <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304231#M5279</link>
    <description>&lt;P&gt;Hi Abilan,&lt;/P&gt;

&lt;P&gt;in DMC there is an alert for you.&lt;/P&gt;

&lt;P&gt;if you don't like it, you can build your own lookup with all forwarders to monitor (e.g. Perimeter.csv) and build a search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| metasearch index=_internal 
| eval host=upper(host) 
| stats count by host
| append [ | inputlookup Perimeter.csv | eval count=0 | eval host=upper(host) | fields host count] 
| stats sum(count) AS Total by host 
| where Total=0 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and schedule it e.g. every five minutes.&lt;/P&gt;

&lt;P&gt;When this search has zero results means that in the last five minutes all forwarders sent logs.&lt;BR /&gt;
Instead Forwarders with Total=0 did't send logs in the last five minutes.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 29 Mar 2017 09:45:05 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2017-03-29T09:45:05Z</dc:date>
    <item>
      <title>Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304229#M5277</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;

&lt;P&gt;Is there anyway we can trigger the alert from Splunk, if any one of it's Universal forwarder is not in running status.&lt;/P&gt;

&lt;P&gt;Thanks for your help!&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Abilan&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 09:29:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304229#M5277</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T09:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304230#M5278</link>
      <description>&lt;P&gt;You can certainly monitor index=_internal and determine if you`re receiving logs. Other way is to use the metadata command to show if something is getting indexed and adjust to your reality. You can find some information here: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.5.2/Troubleshooting/Cantfinddata#Are_you_using_forwarders.3F" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/6.5.2/Troubleshooting/Cantfinddata#Are_you_using_forwarders.3F&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 13:28:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304230#M5278</guid>
      <dc:creator>gfreitas</dc:creator>
      <dc:date>2020-09-29T13:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304231#M5279</link>
      <description>&lt;P&gt;Hi Abilan,&lt;/P&gt;

&lt;P&gt;in DMC there is an alert for you.&lt;/P&gt;

&lt;P&gt;if you don't like it, you can build your own lookup with all forwarders to monitor (e.g. Perimeter.csv) and build a search like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| metasearch index=_internal 
| eval host=upper(host) 
| stats count by host
| append [ | inputlookup Perimeter.csv | eval count=0 | eval host=upper(host) | fields host count] 
| stats sum(count) AS Total by host 
| where Total=0 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and schedule it e.g. every five minutes.&lt;/P&gt;

&lt;P&gt;When this search has zero results means that in the last five minutes all forwarders sent logs.&lt;BR /&gt;
Instead Forwarders with Total=0 did't send logs in the last five minutes.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 09:45:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304231#M5279</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T09:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304232#M5280</link>
      <description>&lt;P&gt;You can use Splunk's &lt;STRONG&gt;Monitoring Console&lt;/STRONG&gt; to monitor deployment status.&lt;BR /&gt;
It internally uses following REST command which you can run in Splunk search &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest splunk_server=local /services/deployment/server/clients
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will give you lastPhonedHome time for each deployment client pinging Splunk Deployment Server.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 09:49:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304232#M5280</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-03-29T09:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304233#M5281</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;Thanks for your response. We are in Splunk 6.2, I don't see any alert in DMC by default to monitor the forwarders.&lt;/P&gt;

&lt;P&gt;I will try the other solution and get back to you.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 10:19:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304233#M5281</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T10:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304234#M5282</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;This query is working fine, but I would like monitor only for 20 hosts out of 30. Is there anyway I can do that. Also if you just give me some idea about the lookup that will be helpful for me.&lt;/P&gt;

&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 10:28:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304234#M5282</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T10:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304235#M5283</link>
      <description>&lt;P&gt;Hi Abilan,&lt;BR /&gt;
I usually use a lookup in this situations because in this way I can easily and dynamically manage this list: it's the only way if I have many hundreds or thousands items, but it's very useful also in situations like yours.&lt;BR /&gt;
If you don't want to manage it you could also update it automatically using a nightly scheduled search with outputlookup command.&lt;/P&gt;

&lt;P&gt;In addition, your lookup you can insert additional information about your forwarders to use in a dashboard showing the status of your deployment (Total=0 means Device Down, Total&amp;gt;0 means Device up and running).&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 10:39:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304235#M5283</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T10:39:44Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304236#M5284</link>
      <description>&lt;P&gt;Thank You! one final question if I use Total = 0 then it's not working as expected. Because if there is no event for any forwarder it is not showing it's name in the output.&lt;/P&gt;

&lt;P&gt;Can you help me here?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 11:25:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304236#M5284</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T11:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304237#M5285</link>
      <description>&lt;P&gt;Hi Abilan,&lt;BR /&gt;
If in your search there are forwarders that didn't send logs in the monitored period, the above search take the value of the lookup that is 0 (see &lt;CODE&gt;| eval count=0&lt;/CODE&gt; in line 4).&lt;BR /&gt;
If you have a forwarder that doesn't send logs and doesn't have Total=0, this means that this forwarder isn't listed in your lookup.&lt;BR /&gt;
Be sure that all forwarders are listed in your lookup, because in the lookup you have the perimeter to monitor.&lt;BR /&gt;
Be attention to host case, for this reason you have to insert &lt;CODE&gt;| eval host=upper(host)&lt;/CODE&gt; both in search and subsearch (append).&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 11:54:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304237#M5285</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T11:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304238#M5286</link>
      <description>&lt;P&gt;Hi .&lt;/P&gt;

&lt;P&gt;To test this scenario, I have just brought down one of the forwarder. I didn't see that forwarder in my search result. do you want me to add the hostnames anywhere?&lt;/P&gt;

&lt;P&gt;Thanks for your help!&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Abilan&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 12:08:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304238#M5286</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T12:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304239#M5287</link>
      <description>&lt;P&gt;Hi Abilan,,&lt;BR /&gt;
what is the column name in your lookup?&lt;BR /&gt;
if it's "host " (all in lowercase), search is already correct, if it has another name you have to insert in the subsearch, before fields command &lt;CODE&gt;| rename your_column_name AS host&lt;/CODE&gt;.&lt;BR /&gt;
I have many installation that uses this search&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 12:16:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304239#M5287</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T12:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304240#M5288</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I didn't change anything on the lookup which you have given. I am just simply using that. Still one of forwarder is down, I am not getting that host name in result.&lt;/P&gt;

&lt;P&gt;If I remove where Total=0  from search, I can see all other hosts but not the one which is down.&lt;/P&gt;

&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 12:29:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304240#M5288</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T12:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304241#M5289</link>
      <description>&lt;P&gt;Hi Abilan,&lt;BR /&gt;
removing Total=0 you can see all Forwarders and if you see other forwarders this means that search is running.&lt;BR /&gt;
But the problem is probably on lookup:&lt;BR /&gt;
check the column name anche check if the missed forwarder is in lookup.&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 12:41:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304241#M5289</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T12:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304242#M5290</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;Column names are looking good. If I search with Total &amp;gt;0 then I can see all the hosts but not that one forwarder which is down.&lt;/P&gt;

&lt;P&gt;Just ran only initial part of the query. Even in this am not having that host in this list.&lt;/P&gt;

&lt;P&gt;| metasearch index=_internal | eval host=upper(host) | stats count by host&lt;/P&gt;

&lt;P&gt;I think we cannot achieve the requirement using this lookup or else I have to put the lookup for every host.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Abilan&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 13:44:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304242#M5290</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T13:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304243#M5291</link>
      <description>&lt;P&gt;Hi Abilan,&lt;BR /&gt;
the problem isn't in the main search, the problem is surely in the subsearch: if you run only the subsearch (&lt;CODE&gt;| inputlookup Perimeter.csv | eval count=0 | eval host=upper(host) | fields host count&lt;/CODE&gt;), is there the missed host?&lt;BR /&gt;
Probably there isn't&lt;BR /&gt;
the result of the previous search should be:&lt;BR /&gt;
&lt;STRONG&gt;host               count&lt;/STRONG&gt;&lt;BR /&gt;
host1             0&lt;BR /&gt;
host2             0&lt;BR /&gt;
...&lt;BR /&gt;
missed_host 0&lt;/P&gt;

&lt;P&gt;For this reason I said to you to verify the lookup column name (if it's different from "host", must be renamed) and the missed host name.&lt;/P&gt;

&lt;P&gt;The sense of the above search is to take the forwarders logs and add to them the lookups host with count=0, so if there aren't results in the search, everyway there is a record with hostname and count=0.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 15:30:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304243#M5291</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T15:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304244#M5292</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;I understand that but when we search for forwarder logs to fetch the host list but in this case the host which is down already won't be in the host list.&lt;/P&gt;

&lt;P&gt;Please correct me If I am wrong. Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 15:54:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304244#M5292</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-29T15:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304245#M5293</link>
      <description>&lt;P&gt;Hi Abilan,&lt;BR /&gt;
In the Perimeter.csv lookup you must put the monitored host list (your monitoring perimeter) to say to Splunk which are the hosts to check.&lt;BR /&gt;
You can manage this list manually (using Lookup Editor App) or using a scheduled search.&lt;BR /&gt;
In this second case, you have to schedule to run every night a search like this:&lt;BR /&gt;
| metasearch index=_internal earliest=-30d latest=now | fields host | outputlookup Perimeter.csv&lt;/P&gt;

&lt;P&gt;I prefer to manually manage this lookup to avoid false positive cases.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2017 16:02:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304245#M5293</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-29T16:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304246#M5294</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;I have installed lookup editor app and created a sheet with only 4 hosts. &lt;/P&gt;

&lt;P&gt;Now I am getting the host which are having Total =0. But however If I check for &amp;gt;0 then am getting all of my hosts not only the ones which are only in input lookup file.&lt;/P&gt;

&lt;P&gt;csv file has 2 below columns. am keeping the Total column blank and host column contains host names.&lt;/P&gt;

&lt;P&gt;host Total&lt;/P&gt;

&lt;P&gt;Thanks a lot for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2017 08:56:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304246#M5294</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-30T08:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304247#M5295</link>
      <description>&lt;P&gt;Hi Abilan,&lt;BR /&gt;
in your lookup you have to insert all hosts you want to monitor, both the ones you're receiving logs and the missed ones, as you said above you should have around 30 hosts.&lt;BR /&gt;
If you add one forwarder to you network, you have to add it to the lookup list.&lt;BR /&gt;
In this way you're sure to monitor all hosts of your lookup and you're sure to have in your search result also the missed hosts.&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2017 09:05:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304247#M5295</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-03-30T09:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Universal Forwarder monitoring</title>
      <link>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304248#M5296</link>
      <description>&lt;P&gt;Thanks a lot for your help.. I will do that.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Abilan&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2017 09:28:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Monitoring-Splunk/Splunk-Universal-Forwarder-monitoring/m-p/304248#M5296</guid>
      <dc:creator>Abilan1</dc:creator>
      <dc:date>2017-03-30T09:28:20Z</dc:date>
    </item>
  </channel>
</rss>

