<?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 does my AND clause not work? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590253#M205496</link>
    <description>&lt;P&gt;thanks but something is wrong because when I run the search the amount of results is anormaly high&lt;/P&gt;&lt;P&gt;and what is all the more strange is that event displayed after running the seatch doesnt correspond to my eval condition!&lt;/P&gt;&lt;P&gt;for example, I have events with web_dura &amp;lt; 50000 and web_domain different to "xx"!&lt;/P&gt;&lt;P&gt;How is it possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap = if( web_domain=xx AND like(url,"%ER_%") OR like(url,"%WS_STOMVX_H51%") OR like(url,"%WS_STOMVZ_H52%") AND web_dura &amp;gt; 500000, 1, 0) 
| chart sum(tpscap) as tps&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Mar 2022 16:31:45 GMT</pubDate>
    <dc:creator>jip31</dc:creator>
    <dc:date>2022-03-22T16:31:45Z</dc:date>
    <item>
      <title>Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590181#M205466</link>
      <description>&lt;P&gt;hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have 2 pb with my eval clause below&lt;/P&gt;
&lt;P&gt;1) when I have a look to the events collected, they dont correspond to the domain specified and the url specified&lt;/P&gt;
&lt;P&gt;so the sum on the field tpscap is wrong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;| eval tpscap =if(domain="stm" AND url="*%g6_%*" OR url="*WS_STOMV2_H55*"  AND web_dura &amp;gt; 50, 1, 0) 
| chart sum(tpscap) as tps&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;so what is wrong please?&lt;/P&gt;
&lt;P&gt;2)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 11:52:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590181#M205466</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T11:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590182#M205467</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you have to use parenthesis in the condition:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap =if(domain="stm" AND (url="*%g6_%*" OR  web_url="*WS_STOMV2_H55*") AND web_dura &amp;gt; 50, 1, 0) 
| chart sum(tpscap) as tps&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 10:35:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590182#M205467</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-03-22T10:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590192#M205470</link>
      <description>&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;sure, it's proper with parenthesis but it's not the problem&amp;nbsp;&lt;/P&gt;&lt;P&gt;the problem is on the field url&lt;/P&gt;&lt;P&gt;If I am doing this I have results&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap =if(domain="stm" AND web_dura &amp;gt; 50, 1, 0) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;But if am doing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap =if(domain="stm" AND (url="*%g6_%*" OR  url="*WS_STOMV2_H55*") AND web_dura &amp;gt; 50, 1, 0) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have no results&lt;/P&gt;&lt;P&gt;It's the same pb if i put url="*"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap =if(domain="stm" AND url="*" AND web_dura &amp;gt; 50, 1, 0) &lt;/LI-CODE&gt;&lt;P&gt;following the same principle how is it possible to have a result&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval errcap =if(web_count &amp;gt;= 1 AND domain="abc", 1, 0) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but that I have no resulst if I add an argument in my clause&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval errcap =if(web_count &amp;gt;= 1 AND domain="abc" AND web_url="*", 1, 0)&lt;/LI-CODE&gt;&lt;P&gt;??&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 13:08:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590192#M205470</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T13:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590201#M205472</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you have to do two checks:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the fieldname is "url" and not "usi" or "Url", it's case sensitive,&lt;/LI&gt;&lt;LI&gt;check in the events where the conditions domain="stm" AND web_dura&amp;gt;50 are satisfied if there's the url field, maybe it's in other events to corrlate to the ones with the other conditions.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 13:02:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590201#M205472</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-03-22T13:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590215#M205474</link>
      <description>&lt;P&gt;I am sure about the fieldname syntax which is url and i am sure that the conditions are satisfied!&lt;/P&gt;&lt;P&gt;despite this, when I exceute this, the results is always 0 !&lt;/P&gt;&lt;P&gt;Its incomprehensible&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval errcap = if((web_error_code=400 OR web_error_code=500 OR web_error_code=503)  AND (url="*ws_stomv2_h51*" OR url="*ws_stomv2_h52*" OR url="*ws_stomv2_h53*", 1, 0)
| stats sum(errcap) as errcap&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I just dio this, it works!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval errcap = if((web_error_code=400 OR web_error_code=500 OR web_error_code=503), 1, 0)
| stats sum(errcap) as errcap&lt;/LI-CODE&gt;&lt;P&gt;So the AND clause dont works!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 14:08:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590215#M205474</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T14:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590219#M205477</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;could you share the full search?&lt;/P&gt;&lt;P&gt;maybe the problem is before.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 14:07:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590219#M205477</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-03-22T14:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590222#M205479</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;here is&lt;/P&gt;&lt;P&gt;errshare, errcont and errwest return results but no errcap (except if I delete the AND clause and I just keep for example the condition on web_error_code)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;`index` (sourcetype="web:requ" OR sourcetype="web:error") earliest=@d+8h latest=@d+14h 
| bucket _time span=1h 
| eval Time=strftime(_time,"%H:%M") 
| eval errcap = if((web_error_code=400 OR web_error_code=500 OR web_error_code=503)  AND (web_url="*ws_stomv2_h51*" OR web_url="*ws_stomv2_h52*" ), 1, 0)
| eval errshare =if(web_error_count &amp;gt;= 1 AND web_domain="lapte.sharepoint.com", 1, 0) 
| eval errcont =if(web_error_count &amp;gt;= 1 AND web_domain="lbp.contacts.worldline)", 1, 0) 
| eval errwest =if(web_error_count &amp;gt;= 1 AND web_domain="ihm", 1, 0) 
| chart sum(errcap) as "Erreurs CAP", sum(errcont) as "Erreurs CONTACTS", sum(errwest) as "Erreurs W", sum(errshare) as "Erreurs SHA" over Time &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 14:18:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590222#M205479</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T14:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590226#M205481</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;debug your search deleting one by one rows from the end, finding where is the problem.&lt;/P&gt;&lt;P&gt;I suppose that the problem is in&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval errcap = if((web_error_code=400 OR web_error_code=500 OR web_error_code=503)  AND (web_url="*ws_stomv2_h51*" OR web_url="*ws_stomv2_h52*" ), 1, 0)&lt;/LI-CODE&gt;&lt;P&gt;In addition, I don't understand the logic of&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| bucket _time span=1h 
| eval Time=strftime(_time,"%H:%M")&lt;/LI-CODE&gt;&lt;P&gt;but it isn't relevant for the probem.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 14:38:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590226#M205481</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-03-22T14:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: help on AND clause which doenst works</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590240#M205490</link>
      <description>&lt;P&gt;I have debugged many times&lt;/P&gt;&lt;P&gt;and it seems obvious that the problem comes from&lt;/P&gt;&lt;PRE&gt;| eval errcap = if((web_error_code=400 OR web_error_code=500 OR web_error_code=503)  AND (web_url="*ws_stomv2_h51*" OR web_url="*ws_stomv2_h52*" ), 1, 0)&lt;/PRE&gt;&lt;P&gt;.but why.....&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 15:24:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590240#M205490</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T15:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590244#M205491</link>
      <description>&lt;P&gt;Wild card for eval and where is not "*" (it only works with search command). You should be either be using "like" command (wildcard=%) or match command (wildcard may not be required). Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap =if(domain="stm" AND (match(url,"%g6_%") OR match(url,"WS_STOMV2_H55") ) AND web_dura &amp;gt; 50, 1, 0) 
| chart sum(tpscap) as tps

OR 

| eval tpscap =if(domain="stm" AND (like(url,"%%g6_%%") OR like(url,"%WS_STOMV2_H55%" ) AND web_dura &amp;gt; 50, 1, 0) 
| chart sum(tpscap) as tps&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 22 Mar 2022 15:29:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590244#M205491</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-03-22T15:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590253#M205496</link>
      <description>&lt;P&gt;thanks but something is wrong because when I run the search the amount of results is anormaly high&lt;/P&gt;&lt;P&gt;and what is all the more strange is that event displayed after running the seatch doesnt correspond to my eval condition!&lt;/P&gt;&lt;P&gt;for example, I have events with web_dura &amp;lt; 50000 and web_domain different to "xx"!&lt;/P&gt;&lt;P&gt;How is it possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap = if( web_domain=xx AND like(url,"%ER_%") OR like(url,"%WS_STOMVX_H51%") OR like(url,"%WS_STOMVZ_H52%") AND web_dura &amp;gt; 500000, 1, 0) 
| chart sum(tpscap) as tps&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 16:31:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590253#M205496</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T16:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590262#M205500</link>
      <description>&lt;P&gt;You've to use parenthesis else your search criteria will not be applied properly.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap = if( web_domain=xx AND (like(url,"%ER_%") OR like(url,"%WS_STOMVX_H51%") OR like(url,"%WS_STOMVZ_H52%")) AND web_dura &amp;gt; 500000, 1, 0) 
| chart sum(tpscap) as tps&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 22 Mar 2022 16:30:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590262#M205500</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-03-22T16:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590275#M205506</link>
      <description>&lt;P class="lia-align-left"&gt;now my result is 0....&lt;/P&gt;&lt;P class="lia-align-left"&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval tpscap = if(web_domain=xx AND (like(web_url,"%g6_%") OR like(web_url,"%WS_STOMV2_H51%") OR like(web_url,"%WS_STOMV2_H52%") OR like(web_url,"%WS_STOMV2_H53%") OR like(web_url,"%WS_Q4M/S4M/%")) AND web_dura &amp;gt; 10, 1, 0)
| stats sum(tpscap)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 17:00:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590275#M205506</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T17:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590277#M205508</link>
      <description>&lt;P&gt;Just make sure order or conditions (or the conditions itself) are correct. Your current condition makes tpscap=1 if&amp;nbsp; web_domain has certain value AND web_dura&amp;gt;10 + web_url is in certain format. It'll set tpscap=1 only if all conditions are met. Try to add a table command before your eval and manually check if the value is being set correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| table web_domain web_url web_duration
| eval tpscap = if(web_domain=xx AND (like(web_url,"%g6_%") OR like(web_url,"%WS_STOMV2_H51%") OR like(web_url,"%WS_STOMV2_H52%") OR like(web_url,"%WS_STOMV2_H53%") OR like(web_url,"%WS_Q4M/S4M/%")) AND web_dura &amp;gt; 10, 1, 0)&lt;/LI-CODE&gt;&lt;P&gt;_domain&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 17:14:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590277#M205508</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2022-03-22T17:14:30Z</dc:date>
    </item>
    <item>
      <title>Re: Why does my AND clause not work?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590280#M205510</link>
      <description>&lt;P&gt;unfortunately it doenst works&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":sad_but_relieved_face:"&gt;😥&lt;/span&gt;&lt;/P&gt;&lt;P&gt;in fact, I deleted this condition which not mandatory&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;web_domain=xx &lt;/PRE&gt;&lt;P&gt;et now my results seems to be coherent....&lt;/P&gt;&lt;P&gt;many thanks somesoni&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Mar 2022 17:42:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-does-my-AND-clause-not-work/m-p/590280#M205510</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2022-03-22T17:42:14Z</dc:date>
    </item>
  </channel>
</rss>

