<?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 How to write a search to compare two weeks errors, and highlight any new errors? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617803#M214693</link>
    <description>&lt;P&gt;Hello Splunkers !!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="538"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="187"&gt;&lt;STRONG&gt;Last week&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="187"&gt;&lt;STRONG&gt;Current week&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="164"&gt;&lt;STRONG&gt;New Error&amp;nbsp;&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"enableEnhancedCheckout"&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;"enableEnhancedCheckout"&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;"error_in_python_script"&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;"error_in_python_script"&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above is the use case I have, In which I want to compare two week errors. And if any new error introduced then I want to highlight that error.&amp;nbsp; Below is the SPL I have used so far. Please let me know what I need to correct in below query and How can I achieve, if you have any other approach.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Index="ABC" source="/abc.log" ("ERROR" OR "EXCEPTION") earliest=-14d latest=now()
| rex field=_raw "Error\s(?&amp;lt;Message&amp;gt;.+)MulesoftAdyenNotification"
| rex field=_raw "fetchSeoContent\(\)\s(?&amp;lt;Exception&amp;gt;.+)"
| rex field=_raw "Error:(?&amp;lt;Error2&amp;gt;.+)"
| rex field=_raw "(?&amp;lt;ErrorM&amp;gt;Error in template script)+"
| rex field=_raw "(?ms)^(?:[^\\|\\n]*\\|){3}(?P&amp;lt;Component&amp;gt;[^\\|]+)"
| rex "service=(?&amp;lt;Service&amp;gt;[A-Za-z._]+)"
| rex "Sites-(?&amp;lt;Country&amp;gt;[A-Z]{2})"
| eval Error_Exception= coalesce(Message,Error2,Exception,ErrorM)
| eval Week=case(now()-_time&amp;lt;604800,"Current_Week",_time&amp;gt;604800, "Last_Week")
| stats dc(Week) AS Week_count values(Week) AS Week by Error_Exception
| eval Error_Status=if(Week_count=2,"Both Weeks",Week)
| eval Difference1= abs(tonumber(Last_Week) - tonumber(Current_Week))
| stats count by Difference1
| fields - count&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 20 Oct 2022 14:43:06 GMT</pubDate>
    <dc:creator>uagraw01</dc:creator>
    <dc:date>2022-10-20T14:43:06Z</dc:date>
    <item>
      <title>How to write a search to compare two weeks errors, and highlight any new errors?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617803#M214693</link>
      <description>&lt;P&gt;Hello Splunkers !!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="538"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="187"&gt;&lt;STRONG&gt;Last week&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="187"&gt;&lt;STRONG&gt;Current week&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="164"&gt;&lt;STRONG&gt;New Error&amp;nbsp;&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;"enableEnhancedCheckout"&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;"enableEnhancedCheckout"&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;"error_in_python_script"&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD&gt;"error_in_python_script"&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above is the use case I have, In which I want to compare two week errors. And if any new error introduced then I want to highlight that error.&amp;nbsp; Below is the SPL I have used so far. Please let me know what I need to correct in below query and How can I achieve, if you have any other approach.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Index="ABC" source="/abc.log" ("ERROR" OR "EXCEPTION") earliest=-14d latest=now()
| rex field=_raw "Error\s(?&amp;lt;Message&amp;gt;.+)MulesoftAdyenNotification"
| rex field=_raw "fetchSeoContent\(\)\s(?&amp;lt;Exception&amp;gt;.+)"
| rex field=_raw "Error:(?&amp;lt;Error2&amp;gt;.+)"
| rex field=_raw "(?&amp;lt;ErrorM&amp;gt;Error in template script)+"
| rex field=_raw "(?ms)^(?:[^\\|\\n]*\\|){3}(?P&amp;lt;Component&amp;gt;[^\\|]+)"
| rex "service=(?&amp;lt;Service&amp;gt;[A-Za-z._]+)"
| rex "Sites-(?&amp;lt;Country&amp;gt;[A-Z]{2})"
| eval Error_Exception= coalesce(Message,Error2,Exception,ErrorM)
| eval Week=case(now()-_time&amp;lt;604800,"Current_Week",_time&amp;gt;604800, "Last_Week")
| stats dc(Week) AS Week_count values(Week) AS Week by Error_Exception
| eval Error_Status=if(Week_count=2,"Both Weeks",Week)
| eval Difference1= abs(tonumber(Last_Week) - tonumber(Current_Week))
| stats count by Difference1
| fields - count&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 20 Oct 2022 14:43:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617803#M214693</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-10-20T14:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617807#M214694</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70277"&gt;@uagraw01&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;let me understand: you want to list the new errors in the current week respsct the previous week, is this correct?&lt;/P&gt;&lt;P&gt;if this is yur need, your search is almost correct but not the last three statements.&lt;/P&gt;&lt;P&gt;to list the new errors you need something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Index="ABC" source="/abc.log" ("ERROR" OR "EXCEPTION") earliest=-14d latest=now()
| rex "Error\s(?&amp;lt;Message&amp;gt;.+)MulesoftAdyenNotification"
| rex "fetchSeoContent\(\)\s(?&amp;lt;Exception&amp;gt;.+)"
| rex "Error:(?&amp;lt;Error2&amp;gt;.+)"
| rex "(?&amp;lt;ErrorM&amp;gt;Error in template script)+"
| rex "(?ms)^(?:[^\\|\\n]*\\|){3}(?P&amp;lt;Component&amp;gt;[^\\|]+)"
| rex "service=(?&amp;lt;Service&amp;gt;[A-Za-z._]+)"
| rex "Sites-(?&amp;lt;Country&amp;gt;[A-Z]{2})"
| eval Error_Exception= coalesce(Message,Error2,Exception,ErrorM)
| eval Week=if(now()-_time&amp;lt;604800,"Current_Week","Last_Week")
| stats dc(Week) AS Week_count values(Week) AS Week by Error_Exception
| where Week_count=1 AND Week="Current_Week"
| table Error_Exception&lt;/LI-CODE&gt;&lt;P&gt;If instead you want to have three columns as the table you shared, you should try something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Index="ABC" source="/abc.log" ("ERROR" OR "EXCEPTION") earliest=-14d latest=now()
| rex "Error\s(?&amp;lt;Message&amp;gt;.+)MulesoftAdyenNotification"
| rex "fetchSeoContent\(\)\s(?&amp;lt;Exception&amp;gt;.+)"
| rex "Error:(?&amp;lt;Error2&amp;gt;.+)"
| rex "(?&amp;lt;ErrorM&amp;gt;Error in template script)+"
| rex "(?ms)^(?:[^\\|\\n]*\\|){3}(?P&amp;lt;Component&amp;gt;[^\\|]+)"
| rex "service=(?&amp;lt;Service&amp;gt;[A-Za-z._]+)"
| rex "Sites-(?&amp;lt;Country&amp;gt;[A-Z]{2})"
| eval Error_Exception= coalesce(Message,Error2,Exception,ErrorM)
| eval Week=if(now()-_time&amp;lt;604800,"Current_Week","Last_Week")
| stats 
   dc(Week) AS Week_count 
   values(Week) AS Week 
   BY Error_Exception
| eval Week=if(Week_count=2,"Both",Week)
| stats 
   values(eval(if(Week_count=2 OR Week="Last_Week",Error_Exception,"") AS "Last_Week"
   values(eval(if(Week_count=2 OR Week="Current_Week",Error_Exception,"") AS "Current_Week"
   values(eval(if(Week="Current_Week",Error_Exception,"") AS "New Error"&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 10:14:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617807#M214694</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-10-20T10:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617812#M214695</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp; Thanks for your valuable inputs. I have corrected the parenthesis.&lt;/P&gt;&lt;P&gt;| stats values(eval(if(Week_count=2 OR Week="Last_Week",Error_Exception,""))) AS "Last_Week" values(eval(if(Week_count=2 OR Week="Current_Week",Error_Exception,""))) AS "Current_Week" values(eval(if(Week="Current_Week",Error_Exception,""))) AS "New Error"&lt;/P&gt;&lt;P&gt;In production enevironment it is taking so much time to retreive the results. Can we put any mechanism where we can compare last 10 errors only to optimize the results?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 10:49:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617812#M214695</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-10-20T10:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617814#M214697</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70277"&gt;@uagraw01&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;the stats command is usually very quick, even if there are some eval!&lt;/P&gt;&lt;P&gt;Could you share your full search, maybe there's something to optimize.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 11:05:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617814#M214697</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-10-20T11:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617816#M214699</link>
      <description>&lt;P&gt;Below is my complete SPL ( excluding metadata fields )&lt;/P&gt;&lt;P&gt;("ERROR" OR "EXCEPTION") earliest=-14d latest=now()&lt;BR /&gt;| rex field=_raw "Error\s(?&amp;lt;Message&amp;gt;.+)MulesoftAdyenNotification"&lt;BR /&gt;| rex field=_raw "fetchSeoContent\(\)\s(?&amp;lt;Exception&amp;gt;.+)"&lt;BR /&gt;| rex field=_raw "Error:(?&amp;lt;Error2&amp;gt;.+)"&lt;BR /&gt;| rex field=_raw "(?&amp;lt;ErrorM&amp;gt;Error in template script)+"&lt;BR /&gt;| rex field=_raw "(?ms)^(?:[^\\|\\n]*\\|){3}(?P&amp;lt;Component&amp;gt;[^\\|]+)"&lt;BR /&gt;| rex "service=(?&amp;lt;Service&amp;gt;[A-Za-z._]+)"&lt;BR /&gt;| rex "Sites-(?&amp;lt;Country&amp;gt;[A-Z]{2})"&lt;BR /&gt;| eval Error_Exception= coalesce(Message,Error2,Exception,ErrorM)&lt;BR /&gt;| eval Week=if(now()-_time&amp;lt;604800,"Current_Week","Last_Week")&lt;BR /&gt;| stats dc(Week) AS Week_count values(Week) AS Week BY Error_Exception&lt;BR /&gt;| eval Week=if(Week_count=2,"Both",Week)&lt;BR /&gt;| stats values(eval(if(Week_count=2 OR Week="Last_Week",Error_Exception,""))) AS "Last_Week" values(eval(if(Week_count=2 OR Week="Current_Week",Error_Exception,""))) AS "Current_Week" values(eval(if(Week="Current_Week",Error_Exception,""))) AS "New_Error"&lt;BR /&gt;| head 10&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 11:08:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617816#M214699</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-10-20T11:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617818#M214701</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70277"&gt;@uagraw01&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, stats command is usually very quick even if there are some eval options.&lt;/P&gt;&lt;P&gt;At first add the index to the main search and you'll have better performaces.&lt;/P&gt;&lt;P&gt;Then, if you can add more filters (e.g. host or sourcetype) to your main search&lt;/P&gt;&lt;P&gt;I don't think that the "head 10" at the end of the search will save much time.&lt;/P&gt;&lt;P&gt;If you have very many events, you could schedule your search every night and save results in a summary index, then you can run your search on the summary index.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 11:21:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617818#M214701</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-10-20T11:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617820#M214702</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;My results are look like as below. There are too many results. If you can filter out me only last top 10 unique new errors. How can I use the Approach.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="uagraw01_0-1666265626104.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/22097i797765D6B9781605/image-size/medium?v=v2&amp;amp;px=400" role="button" title="uagraw01_0-1666265626104.png" alt="uagraw01_0-1666265626104.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 11:29:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617820#M214702</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-10-20T11:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617827#M214708</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70277"&gt;@uagraw01&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;it seems that there's an error in the first eval in stats, so please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;("ERROR" OR "EXCEPTION") earliest=-14d latest=now()
| rex field=_raw "Error\s(?&amp;lt;Message&amp;gt;.+)MulesoftAdyenNotification"
| rex field=_raw "fetchSeoContent\(\)\s(?&amp;lt;Exception&amp;gt;.+)"
| rex field=_raw "Error:(?&amp;lt;Error2&amp;gt;.+)"
| rex field=_raw "(?&amp;lt;ErrorM&amp;gt;Error in template script)+"
| rex field=_raw "(?ms)^(?:[^\\|\\n]*\\|){3}(?P&amp;lt;Component&amp;gt;[^\\|]+)"
| rex "service=(?&amp;lt;Service&amp;gt;[A-Za-z._]+)"
| rex "Sites-(?&amp;lt;Country&amp;gt;[A-Z]{2})"
| eval Error_Exception= coalesce(Message,Error2,Exception,ErrorM)
| eval Week=if(now()-_time&amp;lt;604800,"Current_Week","Last_Week")
| stats dc(Week) AS Week_count values(Week) AS Week BY Error_Exception
| eval Week=if(Week_count=2,"Both",Week)
| stats values(eval(if(Week="Both" OR Week="Last_Week",Error_Exception,""))) AS "Last_Week" values(eval(if(Week="Both" OR Week="Current_Week",Error_Exception,""))) AS "Current_Week" values(eval(if(Week="Current_Week",Error_Exception,""))) AS "New_Error"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;then as I said, add index and eventually some other field to filter results.&lt;/P&gt;&lt;P&gt;In addition, Error_Exception has very long values, is it correct or is it possible to reduce them?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 12:31:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617827#M214708</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-10-20T12:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617829#M214710</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;Thanks for correcting the SPL. Yes we can reduce them by using the &lt;STRONG&gt;substr.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 12:36:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617829#M214710</guid>
      <dc:creator>uagraw01</dc:creator>
      <dc:date>2022-10-20T12:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk SPL</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617847#M214724</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/70277"&gt;@uagraw01&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 13:50:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-write-a-search-to-compare-two-weeks-errors-and-highlight/m-p/617847#M214724</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-10-20T13:50:28Z</dc:date>
    </item>
  </channel>
</rss>

