<?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: Last 3 occurrence not like in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477262#M192673</link>
    <description>&lt;P&gt;&lt;IMG src="https://share.getcloudapp.com/JruWXOLx" alt="alt text" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Feb 2020 14:15:37 GMT</pubDate>
    <dc:creator>praddasg</dc:creator>
    <dc:date>2020-02-21T14:15:37Z</dc:date>
    <item>
      <title>Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477260#M192671</link>
      <description>&lt;P&gt;So my below query gives the result of Rejection % but I need to also filter this one step more where it should not show me the results where last 3 consecutive occurrences of a  merchantId had been status "CONFIRMED", is this possible?&lt;/P&gt;

&lt;P&gt;index=apps&lt;BR /&gt;
  status=CONFIRMED OR status=REJECTED&lt;BR /&gt;
partner_account_name="Level Up"&lt;BR /&gt;
| stats count by status, merchantId&lt;BR /&gt;
| xyseries merchantId, status, count&lt;BR /&gt;
| eval result = (REJECTED)/((CONFIRMED+REJECTED))*100&lt;BR /&gt;
| eval count = CONFIRMED + REJECTED&lt;BR /&gt;
| where count &amp;gt;= 5&lt;BR /&gt;
| where result &amp;gt;= 20&lt;BR /&gt;
| sort result desc&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477260#M192671</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477261#M192672</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| xyseries merchantId, status, count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;please provide this result.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 09:00:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477261#M192672</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-21T09:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477262#M192673</link>
      <description>&lt;P&gt;&lt;IMG src="https://share.getcloudapp.com/JruWXOLx" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 14:15:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477262#M192673</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-02-21T14:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477263#M192674</link>
      <description>&lt;P&gt;&lt;A href="https://share.getcloudapp.com/JruWXOLx"&gt;https://share.getcloudapp.com/JruWXOLx&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 14:16:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477263#M192674</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-02-21T14:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477264#M192675</link>
      <description>&lt;P&gt;Use &lt;CODE&gt;streamstats&lt;/CODE&gt; to count for consecutive values. Here's an example to get you started &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=apps
status=CONFIRMED OR status=REJECTED
partner_account_name="Level Up"
| stats count by status, merchantId
| xyseries merchantId, status, count
| eval result = (REJECTED)/((CONFIRMED+REJECTED))*100
| eval count = CONFIRMED + REJECTED
| where count &amp;gt;= 5
| where result &amp;gt;= 20
| sort result desc
| streamstats last(status) AS prev_status by merchantId
| streamstats last(prev_status) AS two_prev_status by merchantId
| eval consecutive_alerts=if(status="CONFIRMED" AND prev_status="CONFIRMED" AND two_prev_status="CONFIRMED","ALERT","GOOD")
| search consecutive_alerts="ALERT"
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Feb 2020 15:08:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477264#M192675</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2020-02-21T15:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477265#M192676</link>
      <description>&lt;P&gt;I am not sure if this is working, I removed the just to rule out this condition&lt;BR /&gt;
 | where count &amp;gt;= 5&lt;BR /&gt;
 | where result &amp;gt;= 20&lt;/P&gt;

&lt;P&gt;For merchantId=1341282 there has status rejected consecutive&lt;BR /&gt;
&lt;A href="https://share.getcloudapp.com/04uKr6nk" target="_blank"&gt;https://share.getcloudapp.com/04uKr6nk&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;but when I run the below i do not get any result, even though the search criteria is more than 4 days&lt;/P&gt;

&lt;P&gt;index=apps&lt;BR /&gt;
 status=CONFIRMED OR status=REJECTED&lt;BR /&gt;
 partner_account_name="Level Up"&lt;BR /&gt;
 | stats count by status, merchantId&lt;BR /&gt;
 | xyseries merchantId, status, count&lt;BR /&gt;
 | eval result = (REJECTED)/((CONFIRMED+REJECTED))*100&lt;BR /&gt;
 | eval count = CONFIRMED + REJECTED&lt;BR /&gt;
 | sort result desc&lt;BR /&gt;
 | streamstats last(status) AS prev_status by merchantId&lt;BR /&gt;
 | streamstats last(prev_status) AS two_prev_status by merchantId&lt;BR /&gt;
 | eval consecutive_alerts=if(status="CONFIRMED" AND prev_status="CONFIRMED" AND two_prev_status="CONFIRMED","ALERT","GOOD")&lt;BR /&gt;
 | search consecutive_alerts="ALERT"&lt;/P&gt;

&lt;P&gt;&lt;A href="https://share.getcloudapp.com/E0uqlXBp" target="_blank"&gt;https://share.getcloudapp.com/E0uqlXBp&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477265#M192676</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477266#M192677</link>
      <description>&lt;P&gt;I am not sure if this working, i removed the to remove the condition&lt;BR /&gt;
| where count &amp;gt;= 5&lt;BR /&gt;
 | where result &amp;gt;= 20&lt;/P&gt;

&lt;P&gt;If you see merchantId=1341282 has consecutive REJECTED but not showing up anything in the other query&lt;BR /&gt;
&lt;A href="https://share.getcloudapp.com/04uKr6nk" target="_blank"&gt;https://share.getcloudapp.com/04uKr6nk&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://share.getcloudapp.com/E0uqlXBp" target="_blank"&gt;https://share.getcloudapp.com/E0uqlXBp&lt;/A&gt;&lt;BR /&gt;
used this&lt;BR /&gt;
index=apps&lt;BR /&gt;
 status=CONFIRMED OR status=REJECTED&lt;BR /&gt;
 partner_account_name="Level Up"&lt;BR /&gt;
 | stats count by status, merchantId&lt;BR /&gt;
 | xyseries merchantId, status, count&lt;BR /&gt;
 | eval result = (REJECTED)/((CONFIRMED+REJECTED))*100&lt;BR /&gt;
 | eval count = CONFIRMED + REJECTED&lt;BR /&gt;
 | sort result desc&lt;BR /&gt;
 | streamstats last(status) AS prev_status by merchantId&lt;BR /&gt;
 | streamstats last(prev_status) AS two_prev_status by merchantId&lt;BR /&gt;
 | eval consecutive_alerts=if(status="CONFIRMED" AND prev_status="CONFIRMED" AND two_prev_status="CONFIRMED","ALERT","GOOD")&lt;BR /&gt;
 | search consecutive_alerts="ALERT"&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477266#M192677</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477267#M192678</link>
      <description>&lt;P&gt;Remove the last line to see your table format. This will show 3 additional columns, first is &lt;CODE&gt;prev_status&lt;/CODE&gt;, second is &lt;CODE&gt;two_prev_status&lt;/CODE&gt; and lastly &lt;CODE&gt;consecutive_alerts&lt;/CODE&gt;. Verify this is working as expected&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 16:02:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477267#M192678</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2020-02-21T16:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477268#M192679</link>
      <description>&lt;P&gt;I executed this&lt;/P&gt;

&lt;P&gt;index=apps&lt;BR /&gt;
 status=CONFIRMED OR status=REJECTED&lt;BR /&gt;
 partner_account_name="Level Up"&lt;BR /&gt;
 | stats count by status, merchantId&lt;BR /&gt;
 | xyseries merchantId, status, count&lt;BR /&gt;
 | eval result = (REJECTED)/((CONFIRMED+REJECTED))*100&lt;BR /&gt;
 | eval count = CONFIRMED + REJECTED&lt;BR /&gt;
 | sort result desc&lt;BR /&gt;
 | streamstats last(status) AS prev_status by merchantId&lt;BR /&gt;
 | streamstats last(prev_status) AS two_prev_status by merchantId&lt;BR /&gt;
 | eval consecutive_alerts=if(status="CONFIRMED" AND prev_status="CONFIRMED" AND two_prev_status="CONFIRMED","ALERT","GOOD")&lt;/P&gt;

&lt;P&gt;I am getting the result like this &lt;A href="https://share.getcloudapp.com/p9uKjoKm" target="_blank"&gt;https://share.getcloudapp.com/p9uKjoKm&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;there are now new columns as &lt;CODE&gt;prev_status&lt;/CODE&gt; , &lt;CODE&gt;two_prev_status&lt;/CODE&gt; &amp;amp; &lt;CODE&gt;consecutive_alerts&lt;/CODE&gt; ( i am fine if these columns are not showing up)&lt;BR /&gt;
but my main objective is to show be merchants in table with their reject % which did not have last 3 consecutive status as confirmed.&lt;/P&gt;

&lt;P&gt;As per the result tried checking with merchantId=1286021 but i can see there was one last confirmed&lt;BR /&gt;
&lt;A href="https://share.getcloudapp.com/lluyzAg7" target="_blank"&gt;https://share.getcloudapp.com/lluyzAg7&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;BTW I tried changing this line&lt;BR /&gt;
 | eval consecutive_alerts=if(status="CONFIRMED" AND prev_status="CONFIRMED" AND two_prev_status="CONFIRMED","ALERT","GOOD") &lt;/P&gt;

&lt;P&gt;to&lt;/P&gt;

&lt;P&gt;| eval consecutive_alerts=if(status!="CONFIRMED" AND prev_status!="CONFIRMED" AND two_prev_status!="CONFIRMED","ALERT","GOOD")&lt;/P&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;P&gt;| eval consecutive_alerts=if(status="REJECTED" AND prev_status="REJECTED" AND two_prev_status="REJECTED","ALERT","GOOD")&lt;/P&gt;

&lt;P&gt;but not luck&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477268#M192679</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477269#M192680</link>
      <description>&lt;P&gt;BTW I tried changing this line&lt;BR /&gt;
 | eval consecutive_alerts=if(status="CONFIRMED" AND prev_status="CONFIRMED" AND two_prev_status="CONFIRMED","ALERT","GOOD") &lt;/P&gt;

&lt;P&gt;to&lt;/P&gt;

&lt;P&gt;| eval consecutive_alerts=if(status!="CONFIRMED" AND prev_status!="CONFIRMED" AND two_prev_status!="CONFIRMED","ALERT","GOOD")&lt;/P&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;P&gt;| eval consecutive_alerts=if(status="REJECTED" AND prev_status="REJECTED" AND two_prev_status="REJECTED","ALERT","GOOD")&lt;/P&gt;

&lt;P&gt;but not luck&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477269#M192680</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477270#M192681</link>
      <description>&lt;P&gt;not sure if this makes any sense, I was trying to break the query little bit more to understand why it is showing merchantId where prev status was confirmed,&lt;/P&gt;

&lt;P&gt;Executed this&lt;BR /&gt;
index=apps&lt;BR /&gt;
sourcetype="pos-generic:prod" Received request to change status=CONFIRMED OR status=REJECTED&lt;BR /&gt;
 partner_account_name="Level Up"&lt;BR /&gt;
| streamstats last(status) AS prev_status by merchantId&lt;BR /&gt;
| streamstats last(prev_status) AS two_prev_status by merchantId&lt;BR /&gt;
| eval consecutive_alerts=if(status="CONFIRMED" OR prev_status="CONFIRMED" OR two_prev_status="CONFIRMED","ALERT","GOOD")&lt;BR /&gt;
| table merchantId, status, prev_status, two_prev_status, consecutive_alerts&lt;BR /&gt;
| search consecutive_alerts="GOOD"&lt;/P&gt;

&lt;P&gt;merchantId = 1290828 shows rejected in all three columns &lt;CODE&gt;status&lt;/CODE&gt;, &lt;CODE&gt;prev_status&lt;/CODE&gt; &amp;amp; &lt;CODE&gt;two_prev_status&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://share.getcloudapp.com/04uKrBQ4" target="_blank"&gt;https://share.getcloudapp.com/04uKrBQ4&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;But if individually try to find this merchantId, the last 2 status is rejected but the 3rd one is confirmed&lt;/P&gt;

&lt;P&gt;sourcetype="pos-generic:prod" partner_account_name="Level Up" merchantId=1290828&lt;BR /&gt;
| table _time, status&lt;BR /&gt;
| stats count by _time, status&lt;BR /&gt;
|sort _time desc&lt;/P&gt;

&lt;P&gt;&lt;A href="https://share.getcloudapp.com/xQug9rRz" target="_blank"&gt;https://share.getcloudapp.com/xQug9rRz&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:18:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477270#M192681</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477271#M192682</link>
      <description>&lt;P&gt;UPDATE:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=apps status=CONFIRMED OR status=REJECTED
AND partner_account_name="Level Up"
| reverse
| streamstats window=3 list(status) as check_status by merchantId
| streamstats count as session by merchantId
| eventstats max(session) as last_session by merchantId
| stats count(eval(status="REJECTED")) as REJECTED 
,count(eval(status="CONFIRMED")) as CONFIRMED
,values(eval(if(session==last_session,check_status,NULL))) as check_status by merchantId
| eval check=if(mvcount(check_status)=1 AND match(check_status,"CONFIRMED"),1,0)
| where check &amp;gt; 0
| eval result = (REJECTED)/((CONFIRMED+REJECTED))*100
| eval count = CONFIRMED + REJECTED
| where count &amp;gt;= 5 AND result &amp;gt;= 20
| sort result desc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;@praddasg &lt;BR /&gt;
This query aims to exclude the result that has consecutive status &lt;EM&gt;CONFIRMED&lt;/EM&gt;  three times last.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 21:40:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477271#M192682</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-21T21:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477272#M192683</link>
      <description>&lt;P&gt;yes your understanding is correct exclude result that CONFIRMED for last 3 times. But this query also giving me a merchantId which has status CONFIRMED.&lt;/P&gt;

&lt;P&gt;Not sure if this relevant but why the below query of streamstats is giving so many result instead just 1, I think the time factor needs to be included to resolve the overall&lt;/P&gt;

&lt;P&gt;index=apps&lt;BR /&gt;
sourcetype="pos-generic:prod" AND "Received request to change" AND (status=CONFIRMED OR status=REJECTED) merchantId=1400622&lt;BR /&gt;
 partner_account_name="Level Up"&lt;BR /&gt;
| streamstats last(status) AS ABC&lt;BR /&gt;
| table merchantId, ABC&lt;/P&gt;

&lt;P&gt;&lt;A href="https://share.getcloudapp.com/E0uqlD1p" target="_blank"&gt;https://share.getcloudapp.com/E0uqlD1p&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:19:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477272#M192683</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-09-30T04:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477273#M192684</link>
      <description>&lt;P&gt;my query &lt;/P&gt;

&lt;P&gt;Aggregate:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;status
---------
REJECTED
CONFIRMED
CONFIRMED
REJECTED
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Not aggregate:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;status
---------
REJECTED
CONFIRMED
CONFIRMED
CONFIRMED
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but , your request seems to be:&lt;/P&gt;

&lt;P&gt;aggregate:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;status
---------
REJECTED
REJECTED
REJECTED
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 21 Feb 2020 23:13:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477273#M192684</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-21T23:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477274#M192685</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| makeresults count=10
| eval status=mvindex(split("CONFIRMED,REJECTED",","),random() %2)
| streamstats last(status) as status_last
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Check this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=apps
sourcetype="pos-generic:prod" AND "Received request to change" AND (status=CONFIRMED OR status=REJECTED) merchantId=1400622
partner_account_name="Level Up"
| streamstats last(status) AS ABC
| table merchantId, ABC
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This your query's &lt;EM&gt;ABC&lt;/EM&gt; is same of &lt;EM&gt;status&lt;/EM&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Feb 2020 23:23:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477274#M192685</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-02-21T23:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Last 3 occurrence not like</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477275#M192686</link>
      <description>&lt;P&gt;I am not sure I understood completely&lt;/P&gt;</description>
      <pubDate>Sat, 22 Feb 2020 14:06:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Last-3-occurrence-not-like/m-p/477275#M192686</guid>
      <dc:creator>praddasg</dc:creator>
      <dc:date>2020-02-22T14:06:28Z</dc:date>
    </item>
  </channel>
</rss>

