<?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: Why isn't the Splunk REST API able to pull data frequently? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313960#M37524</link>
    <description>&lt;P&gt;Yes Damien, I agree with you.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Apr 2018 23:02:00 GMT</pubDate>
    <dc:creator>vgollapudi</dc:creator>
    <dc:date>2018-04-05T23:02:00Z</dc:date>
    <item>
      <title>Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313953#M37517</link>
      <description>&lt;P&gt;Hello Splunk Community !!&lt;/P&gt;

&lt;P&gt;I've configured Splunk REST API in our environment and I was able to see data when I initially configured it but it's unable to do so frequently. I've tired using Polling Intervals but it didn't workout (default is 60 seconds). Currently, the setup looks like this for the REST API APP&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;Installed the APP on Heavy Forwarder and it's able to forward events to indexers and I can see those in Search Head UI&lt;/LI&gt;
&lt;LI&gt;Edited props.conf file to include LINE_BREAKER and TIME_STAMP fields such that it can split events and assign the timestamp of the event based on the data received.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;inputs.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[rest://CFTest]
auth_type = none
endpoint = https://api.cloudflare.com/client/v4/zones/CFZONE/logs/received?start=$start_time$&amp;amp;end=$end_time$&amp;amp;fields=RayID,ClientIP,EdgeStartTimestamp,ClientRequestHost&amp;amp;timestamps=rfc3339
http_header_propertys = X-Auth-Email=XXX@XXX.com,X-Auth-Key=XXXX
http_method = GET
index_error_response_codes = 1
response_type = json
sequential_mode = 0
sourcetype = cloudflare
streaming_request = 0
cookies = __cfduid=d2a7b8efd7e8cefe148fdb2a95369cf9d1522783367
disabled = 0
index = incapsula
polling_interval = 
backoff_time = 60
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When I was investigating why it's pulling logs infrequently then I came across this information in splunkd.log. Interestingly logs are pulled during the timestamp whenever I see this in the splunkd.log and after that timestamp I can't see it. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;04-04-2018 03:39:21.959 +0000 INFO  ExecProcessor - New scheduled exec process: python /opt/splunk/etc/apps/rest_ta/bin/rest.py
04-04-2018 03:39:21.959 +0000 INFO  ExecProcessor -     interval: run once
04-04-2018 03:39:21.959 +0000 INFO  ExecProcessor - interval="5 3 * * *" is a valid cron schedule
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If I edit inputs.conf which I have listed above, then again I can see logs around that particular timestamp. I don't know how this schedule is decided and how to change it based on our requirement which is to pull every minute. &lt;/P&gt;

&lt;P&gt;Please let me know if anyone came across this situation in your environment and what steps you took to resolve the issue. &lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Venky&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:52:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313953#M37517</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2020-09-29T18:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313954#M37518</link>
      <description>&lt;P&gt;The code that issues the REST call is basically an infinite loop that goes to sleep the number of seconds you specify for the  &lt;CODE&gt;polling_interval&lt;/CODE&gt;.  Here is a snippet:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;if polling_type == 'interval':                         
    time.sleep(float(polling_interval))
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;For cron, it is similar, but a little different:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;if polling_type == 'cron':
    next_cron_firing = cron_iter.get_next(datetime)
    while get_current_datetime_for_cron() != next_cron_firing:
        time.sleep(float(10))
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Since you don't have a  &lt;CODE&gt;polling_interval&lt;/CODE&gt; in your  &lt;CODE&gt;inputs.conf&lt;/CODE&gt;, your  &lt;CODE&gt;polling_type&lt;/CODE&gt; should be 'interval' and the default 60 seconds should apply.&lt;/P&gt;

&lt;P&gt;The only thing I see that looks a little wonky is the tokens in your endpoint.  These tokens have to be defined in  &lt;CODE&gt;bin/tokens.py&lt;/CODE&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Apr 2018 21:40:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313954#M37518</guid>
      <dc:creator>jconger</dc:creator>
      <dc:date>2018-04-04T21:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313955#M37519</link>
      <description>&lt;P&gt;Any log errors ? &lt;/P&gt;

&lt;P&gt;Try this search : &lt;CODE&gt;index=_internal ExecProcessor error rest.py&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;There is no externally configurable &lt;CODE&gt;polling_type&lt;/CODE&gt;parameter in the REST Mod Input.&lt;/P&gt;

&lt;P&gt;There is only &lt;CODE&gt;polling_interval&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/4702iCD2C2A39AC1FE97C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;The App automatically determines if this field is an integer or a cron pattern, sets an internal variable to indicate the type of polling and then executes the polling loop accordingly.&lt;/P&gt;

&lt;P&gt;If the &lt;CODE&gt;polling_interval&lt;/CODE&gt; parameter is left blank , then it defaults to 60. So will poll your REST endpoint every minute.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 02:57:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313955#M37519</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2018-04-05T02:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313956#M37520</link>
      <description>&lt;P&gt;Hello jconger, I have added those two parameters under bin/tokens.py. I don't know how polling_type is related to the interval.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 04:17:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313956#M37520</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-04-05T04:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313957#M37521</link>
      <description>&lt;P&gt;please read my answer below , polling_type is irrelevant (i wrote it).&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 12:06:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313957#M37521</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2018-04-05T12:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313958#M37522</link>
      <description>&lt;P&gt;Hello Damien,&lt;/P&gt;

&lt;P&gt;Thanks for responding to my question. I tried the search you have suggested, it only reports about the CloudFlare errors nothing with the REST API APP. I'm still unsure why it works when I update inputs.conf by changing one of it's key value pair but not relying on the polling_interval. Even if I don't provide polling interval it should work based on your comment that REST endpoint should pull every minute.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Venky&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 18:00:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313958#M37522</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-04-05T18:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313959#M37523</link>
      <description>&lt;P&gt;This is the tokens.py &lt;/P&gt;

&lt;P&gt;import datetime&lt;/P&gt;

&lt;P&gt;now = datetime.datetime.now()&lt;/P&gt;

&lt;P&gt;def sometoken():&lt;BR /&gt;
    return 'zoo'&lt;/P&gt;

&lt;P&gt;def sometokenlist():&lt;BR /&gt;
    return ['goo','foo','zoo']&lt;/P&gt;

&lt;P&gt;def datetoday():&lt;BR /&gt;
    today = datetime.date.today()&lt;BR /&gt;
    return today.strftime('%Y-%m-%d')&lt;/P&gt;

&lt;P&gt;def start_time():&lt;BR /&gt;
    start_time = now - datetime.timedelta(minutes=7)&lt;BR /&gt;
    return start_time.strftime('%Y-%m-%dT%H:%M:%SZ')&lt;/P&gt;

&lt;P&gt;def end_time():&lt;BR /&gt;
    end_time = now - datetime.timedelta(minutes=6)&lt;BR /&gt;
    return end_time.strftime('%Y-%m-%dT%H:%M:%SZ')&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 18:53:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313959#M37523</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2020-09-29T18:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313960#M37524</link>
      <description>&lt;P&gt;Yes Damien, I agree with you.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Apr 2018 23:02:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313960#M37524</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-04-05T23:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313961#M37525</link>
      <description>&lt;P&gt;Hello Venky&lt;BR /&gt;
Did you manage to solve this problem and send Cloudflare logs to Splunk? I'm trying the same here, so any advice will be greatly appreciated.&lt;BR /&gt;
Cheers,&lt;BR /&gt;
Presciliano&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 18:28:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313961#M37525</guid>
      <dc:creator>prescilianoneto</dc:creator>
      <dc:date>2018-07-30T18:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313962#M37526</link>
      <description>&lt;P&gt;Hi vgollapudi,&lt;/P&gt;

&lt;P&gt;Try adding &lt;BR /&gt;
in inputs.conf:&lt;BR /&gt;
http_header_propertys = content-type= application/json,accept=application/json&lt;BR /&gt;
turn streaming_request = 1&lt;/P&gt;

&lt;P&gt;In props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;TRUNCATE = 0
INDEXED_EXTRACTIONS = JSON
KV_MODE = none
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;let me know if this helps..&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 20:45:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313962#M37526</guid>
      <dc:creator>pruthvikrishnap</dc:creator>
      <dc:date>2020-09-29T20:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313963#M37527</link>
      <description>&lt;P&gt;We did a workaround for this problem by writing a python script such that it will query the CloudFlare API and ingest the logs. &lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 19:26:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313963#M37527</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-07-30T19:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313964#M37528</link>
      <description>&lt;P&gt;Problem is with the cron job schedule and currently we are using script to pull the events.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 19:43:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313964#M37528</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-07-30T19:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313965#M37529</link>
      <description>&lt;P&gt;Awesome. Is it publicly available? If not, could you please share it with me?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 19:49:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313965#M37529</guid>
      <dc:creator>prescilianoneto</dc:creator>
      <dc:date>2018-07-30T19:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313966#M37530</link>
      <description>&lt;P&gt;It's not publicly available.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 21:00:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313966#M37530</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-07-30T21:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313967#M37531</link>
      <description>&lt;P&gt;I have it polling every 3 seconds successfully. &lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 22:44:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313967#M37531</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-07-30T22:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313968#M37532</link>
      <description>&lt;P&gt;@skoelpin can you share how it was done?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jul 2018 23:14:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313968#M37532</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-07-30T23:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313969#M37533</link>
      <description>&lt;P&gt;It's very easy , the setup screen is even documented for you.&lt;/P&gt;

&lt;P&gt;The polling interval can  be either 1) a cron expression or 2) a polling interval &lt;STRONG&gt;in seconds&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 00:22:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313969#M37533</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2018-07-31T00:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313970#M37534</link>
      <description>&lt;P&gt;If you read the docs , the polling interval field can also be a polling interval &lt;STRONG&gt;in seconds&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 00:27:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313970#M37534</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2018-07-31T00:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313971#M37535</link>
      <description>&lt;P&gt;@Damien it didn't work for me. All it worked for the first time.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 00:31:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313971#M37535</guid>
      <dc:creator>vgollapudi</dc:creator>
      <dc:date>2018-07-31T00:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Why isn't the Splunk REST API able to pull data frequently?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313972#M37536</link>
      <description>&lt;P&gt;Yeah, just follow the documentation. You set the endpoint and polling interval. It's very simple. What are the server specs of the system accepting the requests? Is your system able to carry the load?&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jul 2018 13:46:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Why-isn-t-the-Splunk-REST-API-able-to-pull-data-frequently/m-p/313972#M37536</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-07-31T13:46:26Z</dc:date>
    </item>
  </channel>
</rss>

