<?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: How to allocate identical timestamps from multiple lines to separate columns using dedup? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152295#M31002</link>
    <description>&lt;P&gt;Try replacing the dobule-quotes with dollar-signs like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;now() - $Job Queued Time$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 04 Aug 2015 23:39:26 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2015-08-04T23:39:26Z</dc:date>
    <item>
      <title>How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152286#M30993</link>
      <description>&lt;P&gt;Hi Splunk heads,&lt;/P&gt;

&lt;P&gt;I'm hoping someone might have the answer to this little issue I am facing.&lt;/P&gt;

&lt;P&gt;I have a problem with the below search when the "Job Queued" and "Job Started" DateTime values are matching. If this is the case, the matching DateTime value will only be allocated to the "Job Queued" column, instead of slotting the timestamp into "Job Queued" and "Job Started". As a result of this, the "Variant Started" columns timestamp will be allocated to "Job Started" and the timestamp from "Variant Completed" will be allocated to "Variant Started".&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event="JobQueued" OR Event="JobProcessStarted" OR Event="VariantProcessStarted" OR Event="VariantProcessCompleted" | rename ProductionId as "Production ID" | rename JobProcessStarted as "Job Started" | rename JobQueued as "Job Queued" | rename VariantProcessStarted as "Variant Started" | rename VariantProcessCompleted as "Variant Completed" | fields DateTime JobId Event "Production ID" | stats values() as by JobId | where mvcount(Event)&amp;gt;1 | eval "Job Queued"=mvindex(DateTime,0) | eval "Job Started"=mvindex(DateTime,1) | eval "Variant Started"=mvindex(DateTime,2) | eval "Variant Completed"=mvindex(DateTime,3) | eval "P&amp;amp;P Duration"=strptime('Variant Completed',"%Y-%m-%dT%H:%M:%S") -strptime('Job Started',"%Y-%m-%dT%H:%M:%S") | eval "P&amp;amp;P Duration"=strftime('P&amp;amp;P Duration',"%H:%M:%S") | table "Production ID" JobId "Job Queued" "Job Started" "Variant Started" "Variant Completed" "P&amp;amp;P Duration" | sort by "Job Queued","Job Started" desc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Example result:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Production ID JobId Job Queued Job Started Variant Started Variant Completed P&amp;amp;P Duration
2/4080/0001#001 1B116C49-A75D-441F-89C6-B592D50BCF9A 2015-08-01T20:20:42 2015-08-01T21:10:01 2015-08-01T21:10:36 
2/3995/0007#001 9B0736F4-4DAF-497B-98CC-66201C09E864 2015-08-01T13:57:04 2015-08-01T14:24:17 2015-08-01T14:24:46
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any advice would be very well appreciated.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
F&lt;/P&gt;</description>
      <pubDate>Sun, 02 Aug 2015 13:05:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152286#M30993</guid>
      <dc:creator>Fergal111</dc:creator>
      <dc:date>2015-08-02T13:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152287#M30994</link>
      <description>&lt;P&gt;The &lt;CODE&gt;values&lt;/CODE&gt; function drops duplicates and sorts alphabetically (which in your case is also sorting by increasing time) but the &lt;CODE&gt;list&lt;/CODE&gt; function keeps duplicates and does not sort at all (which in your case leaves them sorted by decreasing time, which is &lt;EM&gt;backwards&lt;/EM&gt; for your case) so, presuming that this is your &lt;EM&gt;only&lt;/EM&gt; problem (which is a big presumption), you should be able to get it working by switching from &lt;CODE&gt;values&lt;/CODE&gt; to &lt;CODE&gt;list&lt;/CODE&gt;, and reversing the order of events (to make the earliest ones show up first), like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event="JobQueued" OR Event="JobProcessStarted" OR Event="VariantProcessStarted" OR Event="VariantProcessCompleted" | reverse | rename ProductionId as "Production ID" | rename JobProcessStarted as "Job Started" | rename JobQueued as "Job Queued" | rename VariantProcessStarted as "Variant Started" | rename VariantProcessCompleted as "Variant Completed" | stats values(*) as * list(DateTime) AS DateTimeList by JobId | where mvcount(Event)&amp;gt;1 | eval "Job Queued"=mvindex(DateTimeList,0) | eval "Job Started"=mvindex(DateTimeList,1) | eval "Variant Started"=mvindex(DateTimeList,2) | eval "Variant Completed"=mvindex(DateTimeList,3) | eval "P&amp;amp;P Duration"=strptime('Variant Completed',"%Y-%m-%dT%H:%M:%S") -strptime('Job Started',"%Y-%m-%dT%H:%M:%S") | eval "P&amp;amp;P Duration"=strftime('P&amp;amp;P Duration',"%H:%M:%S") | table "Production ID" JobId "Job Queued" "Job Started" "Variant Started" "Variant Completed" "P&amp;amp;P Duration" | sort by "Job Queued","Job Started" desc
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 02 Aug 2015 21:02:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152287#M30994</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-08-02T21:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152288#M30995</link>
      <description>&lt;P&gt;Hi Woodcock,&lt;/P&gt;

&lt;P&gt;Thanks for jumping on to this post!&lt;/P&gt;

&lt;P&gt;Event="JobQueued" OR Event="JobProcessStarted" OR Event="VariantProcessStarted" OR Event="VariantProcessCompleted" | reverse | rename ProductionId as "Production ID" | rename JobProcessStarted as "Job Started" | rename JobQueued as "Job Queued" | rename VariantProcessStarted as "Variant Started" | rename VariantProcessCompleted as "Variant Completed" | stats values(*) as * list(DateTime) AS DateTimeList by JobId | where mvcount(Event)&amp;gt;1 | eval "Job Queued"=mvindex(DateTimeList,0) | eval "Job Started"=mvindex(DateTimeList,1) | eval "Variant Started"=mvindex(DateTimeList,2) | eval "Variant Completed"=mvindex(DateTimeList,3) | eval "P&amp;amp;P Duration"=strptime('Variant Completed',"%Y-%m-%dT%H:%M:%S") -strptime('Job Started',"%Y-%m-%dT%H:%M:%S") | eval "P&amp;amp;P Duration"=strftime('P&amp;amp;P Duration',"%H:%M:%S") | table "Production ID" JobId "Job Queued" "Job Started" "Variant Started" "Variant Completed" "P&amp;amp;P Duration" | sort by "Job Queued","Job Started" desc&lt;/P&gt;

&lt;P&gt;When I try this it assigns the DateTime from the JobQueued to all time fields. Any ideas?&lt;/P&gt;

&lt;P&gt;Example:&lt;BR /&gt;
Production ID   JobId   Job Queued  Job Started Variant Started Variant Completed   P&amp;amp;P Duration&lt;BR /&gt;
BVT/Test/002#001    25D80E91-1599-4534-B741-4A05C4351384    2015-08-03T11:56:16 2015-08-03T11:56:16 2015-08-03T11:56:16 2015-08-03T11:56:16 00:00:00&lt;/P&gt;

&lt;P&gt;Below are the four raw line events.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;{ [-] &lt;BR /&gt;
    BundleCode:  20 &lt;BR /&gt;
    BundleCodeDescription:  CTV01 &lt;BR /&gt;
    BundleUrl:  test.xml &lt;BR /&gt;
    DateTime:  2015-08-03T10:05:10 &lt;BR /&gt;
    Event:  VariantProcessCompleted &lt;BR /&gt;
    JobId:  E3953235-84DC-4B3A-B0AF-1D3A09047933 &lt;BR /&gt;
    ProductionId:  BVT/Test/002#001 &lt;BR /&gt;
    PublishedLocation:  VAR001/BVT-Test-002-001_20_4_VAR001.ism &lt;BR /&gt;
    VariantDescription:  dvbdash-nodrm-noad-nosubs &lt;BR /&gt;
    VariantId:  VAR001 &lt;BR /&gt;
}&lt;BR /&gt;
Show as raw text&lt;BR /&gt;
{ [-] &lt;BR /&gt;
    BundleCode:  20 &lt;BR /&gt;
    BundleCodeDescription:  CTV01 &lt;BR /&gt;
    BundleUrl:  test.xml&lt;BR /&gt;&lt;BR /&gt;
    DateTime:  2015-08-03T10:04:54 &lt;BR /&gt;
    Event:  VariantProcessStarted &lt;BR /&gt;
    JobId:  E3953235-84DC-4B3A-B0AF-1D3A09047933 &lt;BR /&gt;
    ProductionId:  BVT/Test/002#001 &lt;BR /&gt;
    VariantDescription:  dvbdash-nodrm-noad-nosubs &lt;BR /&gt;
    VariantId:  VAR001 &lt;BR /&gt;
}&lt;BR /&gt;
Show as raw text&lt;BR /&gt;
{ [-] &lt;BR /&gt;
    DateTime:  2015-08-03T10:03:32 &lt;BR /&gt;
    Event:  JobProcessStarted &lt;BR /&gt;
    JobId:  E3953235-84DC-4B3A-B0AF-1D3A09047933 &lt;BR /&gt;
}&lt;BR /&gt;
Show as raw text&lt;BR /&gt;
{ [-] &lt;BR /&gt;
    DateTime:  2015-08-03T10:03:31 &lt;BR /&gt;
    Event:  JobQueued &lt;BR /&gt;
    JobId:  E3953235-84DC-4B3A-B0AF-1D3A09047933 &lt;BR /&gt;
}&lt;BR /&gt;
Show as raw text&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 06:52:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152288#M30995</guid>
      <dc:creator>Fergal111</dc:creator>
      <dc:date>2020-09-29T06:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152289#M30996</link>
      <description>&lt;P&gt;I was thinking | dedup 3 DateTime |&lt;BR /&gt;
...but doesn't make as difference:(&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 09:54:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152289#M30996</guid>
      <dc:creator>Fergal111</dc:creator>
      <dc:date>2015-08-04T09:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152290#M30997</link>
      <description>&lt;P&gt;Let's do it directly and it won't be a problem; try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event="JobQueued" OR Event="JobProcessStarted" OR Event="VariantProcessStarted" OR Event="VariantProcessCompleted" | eval "Job Queued Time" = if(Event="JobQueued", DateTime, null()) | eval "Job Started Time" = if(Event="JobProcessStarted", DateTime, null()) | eval "Variant Started Time" = if(Event="VariantProcessStarted", DateTime, null()) | eval "Variant Completed Time" = if(Event="VariantProcessCompleted", DateTime, null()) | rename ProductionId as "Production ID" | stats values(*) as * by JobId | where mvcount(Event)&amp;gt;1 | eval "P&amp;amp;P Duration"=strptime('Variant Completed Time',"%Y-%m-%dT%H:%M:%S") -strptime('Job Started Time',"%Y-%m-%dT%H:%M:%S") | eval "P&amp;amp;P Duration"=strftime('P&amp;amp;P Duration', "%H:%M:%S") | table "Production ID" JobId "Job Queued Time" "Job Started Time" "Variant Started Time" "Variant Completed Time" "P&amp;amp;P Duration" | sort by "Job Queued Time","Job Started Time" desc
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Aug 2015 20:15:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152290#M30997</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-08-04T20:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152291#M30998</link>
      <description>&lt;P&gt;Thank you Woodcock. That works perfectly! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;just added this at the end for for values that have yet to appear in the logs.&lt;/P&gt;

&lt;P&gt;| fillnull value=Processing "Production ID","Job Queued","Job Started","Variant Started","Variant Completed","P&amp;amp;P Duration"&lt;/P&gt;

&lt;P&gt;Im trying to find out now if it is possible to write something along the lines of:&lt;BR /&gt;
value=pending if DateTime value of "Job Queued"  is less than 24 hours ago. If it is more than 24 hours ago value=failed&lt;/P&gt;

&lt;P&gt;Thanks for all your help:)&lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
F&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 22:52:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152291#M30998</guid>
      <dc:creator>Fergal111</dc:creator>
      <dc:date>2015-08-04T22:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152292#M30999</link>
      <description>&lt;P&gt;What you asked can be done like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event="JobQueued" OR Event="JobProcessStarted" OR Event="VariantProcessStarted" OR Event="VariantProcessCompleted" | eval "Job Queued Time" = if(Event="JobQueued", DateTime, null()) | eval "Job Started Time" = if(Event="JobProcessStarted", DateTime, null()) | eval "Variant Started Time" = if(Event="VariantProcessStarted", DateTime, null()) | eval "Variant Completed Time" = if(Event="VariantProcessCompleted", DateTime, null()) | rename ProductionId as "Production ID" | stats values(*) as * by JobId | where mvcount(Event)&amp;gt;1 | eval "P&amp;amp;P Duration"=strptime('Variant Completed Time',"%Y-%m-%dT%H:%M:%S") -strptime('Job Started Time',"%Y-%m-%dT%H:%M:%S") | eval "P&amp;amp;P Duration"=strftime('P&amp;amp;P Duration', "%H:%M:%S") | eval statusValue=if(((now() - "Job Queued Time") &amp;lt; (24*60*60)), "pending", "failed")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;But I think what you &lt;EM&gt;really&lt;/EM&gt; desire is this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Event="JobQueued" OR Event="JobProcessStarted" OR Event="VariantProcessStarted" OR Event="VariantProcessCompleted" | eval "Job Queued Time" = if(Event="JobQueued", DateTime, null()) | eval "Job Started Time" = if(Event="JobProcessStarted", DateTime, null()) | eval "Variant Started Time" = if(Event="VariantProcessStarted", DateTime, null()) | eval "Variant Completed Time" = if(Event="VariantProcessCompleted", DateTime, null()) | rename ProductionId as "Production ID" | stats values(*) as * by JobId | where mvcount(Event)&amp;gt;1 | eval "P&amp;amp;P Duration"=strptime('Variant Completed Time',"%Y-%m-%dT%H:%M:%S") -strptime('Job Started Time',"%Y-%m-%dT%H:%M:%S") | eval "P&amp;amp;P Duration"=strftime('P&amp;amp;P Duration', "%H:%M:%S") | eval QueuedJobAgeSecs= (now() - "Job Queued Time") | eval statusValue=case(isnotnull("Variant Completed Time"), "Completed", isnotnull("Variant Started Time"), "In-Flight", isnull("Job Started") AND QueuedJobAgeSecs &amp;lt; (24*60*60), "Pending", isnull("Job Started"), "Failed", 1==1, "???ERROR???")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Aug 2015 23:10:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152292#M30999</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-08-04T23:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152293#M31000</link>
      <description>&lt;P&gt;Please note that there was a typo in one of the field names and I fixed it by re-editing my solution.  Be sure to update your search.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 23:11:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152293#M31000</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-08-04T23:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152294#M31001</link>
      <description>&lt;P&gt;Thanks Woodcock.&lt;/P&gt;

&lt;P&gt;I tried both but there was thrown an error each time.&lt;/P&gt;

&lt;P&gt;Error in 'eval' command: Typechecking failed. '-' only takes numbers.&lt;BR /&gt;
I wonder if this is pointing to a bug here: (now() - "Job Queued Time")&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2015 23:30:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152294#M31001</guid>
      <dc:creator>Fergal111</dc:creator>
      <dc:date>2015-08-04T23:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152295#M31002</link>
      <description>&lt;P&gt;Try replacing the dobule-quotes with dollar-signs like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;now() - $Job Queued Time$
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Aug 2015 23:39:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152295#M31002</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-08-04T23:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to allocate identical timestamps from multiple lines to separate columns using dedup?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152296#M31003</link>
      <description>&lt;P&gt;Thank you. That removed the error but iwhat im seeing now is new fields/columns and blank spaces.&lt;/P&gt;

&lt;P&gt;Im not sure but i hope this paste will give you an idea of what im seeing.&lt;/P&gt;

&lt;P&gt;JobId   BundleCode  BundleCodeDescription   BundleUrl   DateTime    Event   Job Queued Time Job Started Time    P&amp;amp;P Duration    Production ID   PublishedLocation   Variant Completed Time  Variant Started Time    VariantDescription  VariantId   date_hour   date_mday   date_minute date_month  date_second date_wday   date_year   date_zone   host    index   linecount   source  sourcetype  splunk_server   statusValue timeendpos  timestartpos&lt;BR /&gt;
0104523B-2144-404A-85B0-E342C023F60C&lt;BR /&gt;&lt;BR /&gt;
2015-08-04T20:53:18&lt;BR /&gt;
2015-08-04T20:53:19&lt;BR /&gt;
JobProcessStarted&lt;BR /&gt;
JobQueued&lt;BR /&gt;
2015-08-04T20:53:18 2015-08-04T20:53:19                             20  4   53  august&lt;BR /&gt;&lt;BR /&gt;
18&lt;BR /&gt;
19&lt;BR /&gt;
tuesday 2015    local&lt;BR /&gt;&lt;BR /&gt;
LL-000-00   main    1   &lt;/P&gt;

&lt;P&gt;JSON        Completed&lt;BR /&gt;&lt;BR /&gt;
52&lt;BR /&gt;
60&lt;BR /&gt;
33&lt;BR /&gt;
41&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 06:55:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-allocate-identical-timestamps-from-multiple-lines-to/m-p/152296#M31003</guid>
      <dc:creator>Fergal111</dc:creator>
      <dc:date>2020-09-29T06:55:07Z</dc:date>
    </item>
  </channel>
</rss>

