<?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: Transaction to Find Duration in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110261#M28825</link>
    <description>&lt;P&gt;Additionally, consider specifying &lt;CODE&gt;TIME_FORMAT&lt;/CODE&gt;, &lt;CODE&gt;TIME_PREFIX&lt;/CODE&gt;, and &lt;CODE&gt;MAX_TIMESTAMP_LOOKAHEAD&lt;/CODE&gt; to mitigate the risk of detecting timestamps within the XML as new events.&lt;/P&gt;</description>
    <pubDate>Thu, 14 May 2015 17:49:21 GMT</pubDate>
    <dc:creator>martin_mueller</dc:creator>
    <dc:date>2015-05-14T17:49:21Z</dc:date>
    <item>
      <title>Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110238#M28802</link>
      <description>&lt;P&gt;I have a simple web service with a request and response called DeliverySchedule. The request and response have a unique identifier called a GUID which are in pairs. I'm trying to find the duration (response time) between the response and request. &lt;/P&gt;

&lt;P&gt;Here's my search which is returning some correct durations but also listing 0 for more than 400 events . I'm also missing a lot of events &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=unleashed  "deliveryschedule"   | transaction GUID startswith="Request" endswith="Reply" | timechart avg(duration)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;GUID = "33efb817-1948-4c8f-bdf4-4111aa1941cc" in this case. We will only have 2 matching GUID's which are attached to the req/resp. They will be different for each req/resp. I also did a field extraction called 'GUID' to capture the GUID between the pipes.. &lt;/P&gt;

&lt;P&gt;REQUEST &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DEBUG 2015-05-13 15:31:40,590
 fterReceiveRequest - Request Record : |33efb817-1948-4c8f-bdf4-4111aa1941cc |
 &amp;amp;lt;GetDeliverySchedule xmlns="http://tempuri.org/"&amp;amp;gt;
  &amp;amp;lt;request&amp;amp;gt;
    &amp;amp;lt;DeliveryType /DotCom_Delivery"&amp;amp;gt;A&amp;amp;lt;/DeliveryType&amp;amp;gt;
    &amp;amp;lt;EndDate/DotCom_Delivery"&amp;amp;gt;2015-05-15&amp;amp;lt;/EndDate&amp;amp;gt;
    &amp;amp;lt;Region_StoreNo/DotCom_Delivery"&amp;amp;gt;970&amp;amp;lt;/Region_StoreNo&amp;amp;gt;
    &amp;amp;lt;Region_zip/DotCom_Delivery"&amp;amp;gt;11111&amp;amp;lt;/Region_zip&amp;amp;gt;
    &amp;amp;lt;StartDate/DotCom_Delivery"&amp;amp;gt;2015-05-13&amp;amp;lt;/StartDate&amp;amp;gt;
  &amp;amp;lt;/request&amp;amp;gt;
&amp;amp;lt;/GetDeliverySchedule&amp;amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;RESPONSE&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DEBUG 2015-05-13 15:31:41,276        BeforeSendReply    - Response Record : |33efb817-1948-4c8f-bdf4-4111aa1941cc |
 &amp;amp;lt;GetDeliveryScheduleResponse xmlns="http://tempuri.org/"&amp;amp;gt;
  &amp;amp;lt;GetDeliveryScheduleResult xmlns:a="http://schemas.datacontract.org/2004/07/DotCom_Delivery" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"&amp;amp;gt;
    &amp;amp;lt;a:DeliveryCalendar&amp;amp;gt;
      &amp;amp;lt;a:Ranges&amp;amp;gt;
        &amp;amp;lt;a:DeliveryRange i:type="a:DeliveryDate"&amp;amp;gt;
          &amp;amp;lt;a:IsAvailableForDelivery&amp;amp;gt;false&amp;amp;lt;/a:IsAvailableForDelivery&amp;amp;gt;
          &amp;amp;lt;a:Date&amp;amp;gt;2015-05-13T00:00:00-04:00&amp;amp;lt;/a:Date&amp;amp;gt;
        &amp;amp;lt;/a:DeliveryRange&amp;amp;gt;
        &amp;amp;lt;a:DeliveryRange i:type="a:DeliveryDate"&amp;amp;gt;
          &amp;amp;lt;a:IsAvailableForDelivery&amp;amp;gt;false&amp;amp;lt;/a:IsAvailableForDelivery&amp;amp;gt;
          &amp;amp;lt;a:Date&amp;amp;gt;2015-05-14T00:00:00-04:00&amp;amp;lt;/a:Date&amp;amp;gt;
        &amp;amp;lt;/a:DeliveryRange&amp;amp;gt;
&amp;amp;lt;/a:Ranges&amp;amp;gt;
      &amp;amp;lt;a:TypeOfCalendar&amp;amp;gt;DayType&amp;amp;lt;/a:TypeOfCalendar&amp;amp;gt;
      &amp;amp;lt;a:ZoneId&amp;amp;gt;110&amp;amp;lt;/a:ZoneId&amp;amp;gt;
    &amp;amp;lt;/a:DeliveryCalendar&amp;amp;gt;
    &amp;amp;lt;a:StatusCode&amp;amp;gt;200&amp;amp;lt;/a:StatusCode&amp;amp;gt;
    &amp;amp;lt;a:StatusMessage&amp;amp;gt;OK&amp;amp;lt;/a:StatusMessage&amp;amp;gt;
  &amp;amp;lt;/GetDeliveryScheduleResult&amp;amp;gt;
&amp;amp;lt;/GetDeliveryScheduleResponse&amp;amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 13 May 2015 19:48:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110238#M28802</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-13T19:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110239#M28803</link>
      <description>&lt;P&gt;Shouldn't it be &lt;CODE&gt;endswith="Response"&lt;/CODE&gt;?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 20:47:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110239#M28803</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-13T20:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110240#M28804</link>
      <description>&lt;P&gt;Thanks for the response. I tried a lot of different strings for startswith="" and endswith="" with no luck. &lt;/P&gt;

&lt;P&gt;The one I'm currently trying is &lt;CODE&gt;startswith="fterReceiveRequest" endswith="BeforeSendReply"&lt;/CODE&gt;and still returning 400+ values with duration = 0.. &lt;/P&gt;

&lt;P&gt;It's working correctly for some events but for 400+ of them, its returning duration=0. I even went to some of the events which have duration=0 and took the difference between the response and request and it's typically in the 200-300ms range, no events have duration = 0 from what I've seen. &lt;/P&gt;

&lt;P&gt;The example I posted above is an event which has duration = 0 &lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 20:55:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110240#M28804</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-13T20:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110241#M28805</link>
      <description>&lt;P&gt;So... Request and Response are linked together correctly by the &lt;CODE&gt;transaction&lt;/CODE&gt;, but the duration field is zero instead of zero point something?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 20:57:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110241#M28805</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-13T20:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110242#M28806</link>
      <description>&lt;P&gt;Yes correct. Transaction is working as expected by grouping the request and response into the same event which have a matching guid. The duration for most is absolute 0. For the on one's that return a valid duration, they are equal to like 0.336 and 0.386.. we rarely have response times over a second. After i fix this issue ill change it from seconds to ms &lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:27:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110242#M28806</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-13T21:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110243#M28807</link>
      <description>&lt;P&gt;Both &lt;CODE&gt;_time&lt;/CODE&gt; fields are extracted correctly?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:29:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110243#M28807</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-13T21:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110244#M28808</link>
      <description>&lt;P&gt;Not sure. Can you elaborate on that? &lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:33:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110244#M28808</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-13T21:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110245#M28809</link>
      <description>&lt;P&gt;Looking at the events without &lt;CODE&gt;|transaction&lt;/CODE&gt;, does the timestamp to the left of the raw event appear correctly including subseconds?&lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 21:35:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110245#M28809</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-13T21:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110246#M28810</link>
      <description>&lt;P&gt;Yes it does. All the timestamps are correct &lt;/P&gt;</description>
      <pubDate>Wed, 13 May 2015 22:23:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110246#M28810</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-13T22:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110247#M28811</link>
      <description>&lt;P&gt;Transaction does a ton of things that you don't appear to need.  Have you tried something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=unleashed  "deliveryschedule"  | stats earliest(_time) AS firstTime latest(_time) AS lastTime by GUID | eval duration=lastTime-firstTime | timechart avg(duration)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 May 2015 00:03:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110247#M28811</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-14T00:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110248#M28812</link>
      <description>&lt;P&gt;I used your suggestion and pasted a snippet of the results below. Notice the difference between the first and last time, why do some have the same times? I looked at some of the events that had 0.000 for the duration and there was a noticeable difference in time. &lt;/P&gt;

&lt;P&gt;Here's a request and response pair of timestamp from looking at the events from GUID 023b0868-8fff-4f52-8374-61a305f96ef4 &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Request = 2015-05-14 02:27:33,405 80361983ms

Response = 2015-05-14 02:27:33,810 80362388ms

RTG_GUID                                     firstTime       lastTime        duration
| 021c4152-e86a-42d5-ad30-b0ace69ea807 |    1431597859.119  1431597860.070  0.951
| 023b0868-8fff-4f52-8374-61a305f96ef4 |    1431584853.405  1431584853.405  0.000
| 027e273f-3e7b-423e-833f-5062ddeafcae |    1431604857.327  1431604857.327  0.000
| 05ba2e35-0275-457a-93c6-cca482bc7c63 |    1431610171.550  1431610171.550  0.000
| 06f6b992-c42c-4409-9dd2-09ea62c99ebe |    1431581886.482  1431581886.841  0.359
| 0a3046db-42fb-4fdc-9845-374a9765b540 |    1431603377.069  1431603377.069  0.000
| 0a48e95c-6a4d-4b45-9334-6698d87f8d9e |    1431580396.203  1431580396.203  0.000
| 0a972800-4681-44e9-805c-915d5b5deeb0 |    1431590652.840  1431590653.339  0.499
| 0c279929-c087-4fce-a685-7a129af473fe |    1431591504.562  1431591504.562  0.000
| 1084be43-ec11-42fa-a240-0605c7921126 |    1431582171.221  1431582171.564  0.343
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 May 2015 13:58:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110248#M28812</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-14T13:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110249#M28813</link>
      <description>&lt;P&gt;Include a &lt;CODE&gt;count&lt;/CODE&gt; in the stats to see if both Request and Response are actually counted. If you get a count of 1, see if the GUID has been extracted correctly. If you get a count of 2, re-check those extracted timestamps.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 14:38:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110249#M28813</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-14T14:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110250#M28814</link>
      <description>&lt;P&gt;I suspect that your &lt;CODE&gt;timestamping&lt;/CODE&gt; may not be working as you are expecting it to.  In other words, the timestamp inside your event is not actually the timetamp that Splunk has given to the event.  Try this search and see if the &lt;CODE&gt;_time&lt;/CODE&gt; value matches what you see in each event (I expect that it won't):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | table _raw _time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 May 2015 14:59:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110250#M28814</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-14T14:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110251#M28815</link>
      <description>&lt;P&gt;I just added a count after stats and count = 1 for all duration=0. &lt;/P&gt;

&lt;P&gt;And count = 2 for all durations that equal the real difference in timestamps. So this has to be an issue with my timestamp then?&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 15:07:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110251#M28815</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-14T15:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110252#M28816</link>
      <description>&lt;P&gt;&lt;CODE&gt;count=1&lt;/CODE&gt; suggests only one event was found for that &lt;CODE&gt;GUID&lt;/CODE&gt;, so the duration must be zero.&lt;/P&gt;

&lt;P&gt;Make sure both events are in the searched time range, and that both events have the correct GUID value extracted - including case and possible spaces at both ends.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 15:12:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110252#M28816</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-14T15:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110253#M28817</link>
      <description>&lt;P&gt;Note: This would affect all methods of calculating the duration, whether based on &lt;CODE&gt;transaction&lt;/CODE&gt;, &lt;CODE&gt;stats&lt;/CODE&gt;, or anything else.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 15:13:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110253#M28817</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-14T15:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110254#M28818</link>
      <description>&lt;P&gt;I just looked up a GUID in the event which was coming back as duration=0 and it's in 2 events both happened today within a half second of each other. &lt;/P&gt;

&lt;P&gt;I compared a GUID which has duration=0 to a GUID which has a valid duration. &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Correct Duration&lt;/STRONG&gt; &lt;BR /&gt;
This has the request and response in separate events &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Duration = 0&lt;/STRONG&gt; &lt;BR /&gt;
This has the request and response in the same event&lt;/P&gt;

&lt;P&gt;Do I have to modify my props.conf file so the line breaks for the response so I have separate events for the request and response?&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 15:36:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110254#M28818</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2015-05-14T15:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110255#M28819</link>
      <description>&lt;P&gt;That certainly sounds like an event breaking issue. Do post the props.conf settings for that sourcetype along with a longer sample of the source file before splunking it (pastebin.com?).&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 15:39:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110255#M28819</guid>
      <dc:creator>martin_mueller</dc:creator>
      <dc:date>2015-05-14T15:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110256#M28820</link>
      <description>&lt;P&gt;Yes, this is definitely a problem that you need to fix if you are going to anything like what we have been discussing.&lt;/P&gt;</description>
      <pubDate>Thu, 14 May 2015 15:42:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110256#M28820</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-14T15:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction to Find Duration</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110257#M28821</link>
      <description>&lt;P&gt;Why would some of the events have the request and response in the same event while others have ONLY a request or response in the event? &lt;/P&gt;

&lt;P&gt;Do you have any suggestions as to how I should configure my regex for LINE_BREAKER so only 1 request or response is present for each event? &lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Here's what I currently have in my props.conf file.&lt;/STRONG&gt; &lt;BR /&gt;
[Unleashed_Message_Log]&lt;BR /&gt;
LINE_BREAKER = |([\r\n]+)&lt;/P&gt;

&lt;P&gt;There's a backslash before the first pipe, before r and before n. It looks like answers.splunk didnt include it in my response when I submitted it &lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:57:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Transaction-to-Find-Duration/m-p/110257#M28821</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2020-09-28T19:57:54Z</dc:date>
    </item>
  </channel>
</rss>

