<?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 Mute Alert using Lookup table in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746924#M241730</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp; hi so I only want to suppress alert on the dates of the lookup table.&lt;/P&gt;&lt;P&gt;The condition for the alert is to fire if the resulted does not equal to 1&lt;/P&gt;&lt;P&gt;If your pointing out my screen shot please let me know which to adjust to the correct format so I can try implement it correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 May 2025 14:12:16 GMT</pubDate>
    <dc:creator>Cheng2Ready</dc:creator>
    <dc:date>2025-05-26T14:12:16Z</dc:date>
    <item>
      <title>How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746770#M241707</link>
      <description>&lt;P&gt;This is what I have setup&lt;BR /&gt;&lt;BR /&gt;index=xxxxxx&lt;BR /&gt;| eval HDate=strftime(_time,"%Y-%m-%d")&lt;BR /&gt;| search NOT [ | inputlookup Date_Test.csv | fields HDate ]&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1747935339961.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39102iB9B580EFB4609140/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1747935339961.png" alt="Cheng2Ready_0-1747935339961.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;The search always returns 1 event.&lt;BR /&gt;The Alert Condition is:&lt;BR /&gt;if it see's&amp;nbsp; more than 1 event OR&amp;nbsp; 0 event trigger an alert.&lt;BR /&gt;&lt;BR /&gt;Issue I'm facing now is on the Lookup table dates&lt;BR /&gt;Lets say I have it setup on April 14th in my Lookup table file "Date_Test.csv"&lt;BR /&gt;On April the 14th Still fired an alert, I'm not sure if its because it see 0 events ?&amp;nbsp; It suppose to Mute on that day.&lt;BR /&gt;any insight and help would be much appreciated&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 17:40:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746770#M241707</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-22T17:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746772#M241708</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/256484"&gt;@Cheng2Ready&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;at first check that the date format is the same both in events (after eval command) and in lookup,&lt;/P&gt;&lt;P&gt;then try inserting in the lookup a test date that you're sure to have events.&lt;/P&gt;&lt;P&gt;At least, don't use this condition in the alert: put the condition inside the alert search and not in the alert definition, in other words: in alert definition use results&amp;gt;0 and use this search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=xxxxxx
| eval HDate=strftime(_time,"%Y-%m-%d")
| search NOT [ | inputlookup Date_Test.csv | fields HDate ]
| stats count
| append [ | makeresults | eval count=0 | fields count)
| stats sum(count) AS total
| where total&amp;gt;1 OR total=0&lt;/LI-CODE&gt;&lt;P&gt;in ths way, removing the final condition, you can check your search results before the alerting.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 18:07:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746772#M241708</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-05-22T18:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746774#M241709</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;&lt;SPAN&gt;"at first check that the date format is the same both in events (after eval command) and in lookup"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;This is what I have in the look up&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1747938707087.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39103i61ED2CEB31DE4BFC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1747938707087.png" alt="Cheng2Ready_0-1747938707087.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 18:32:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746774#M241709</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-22T18:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746780#M241710</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;the Alert still fired&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1747945529120.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39105iC53F558375EC5E42/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1747945529120.png" alt="Cheng2Ready_0-1747945529120.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_1-1747945551332.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39106i292A8781A2097909/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_1-1747945551332.png" alt="Cheng2Ready_1-1747945551332.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_2-1747945572006.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39107iD12FB3FECA2D9730/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_2-1747945572006.png" alt="Cheng2Ready_2-1747945572006.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 20:26:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746780#M241710</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-22T20:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746787#M241714</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/256484"&gt;@Cheng2Ready&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the SPL you have shared you are appending a makeresult with count=0, then stats sum(count) as total, but then in your WHERE clause you have total&amp;gt;1 &lt;STRONG&gt;OR total=0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If total=0 which I guess it will, then you will still get 1 result returned, even if the returned result says total=0 it will still match the criteria of No. of events &amp;gt;0.&lt;/P&gt;&lt;P&gt;I think you meant to close the append after the eval count=0. Can you try the following instead?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=xxxxxx
| eval HDate=strftime(_time,"%Y-%m-%d")
| search NOT [ | inputlookup Date_Test.csv | fields HDate ]
| stats count
| append [ | makeresults | eval count=0 | fields count) ]
| stats sum(count) AS total
| where total&amp;gt;1&lt;/LI-CODE&gt;&lt;P&gt;Although I'm confused as to why you couldnt do this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=xxxxxx
| eval HDate=strftime(_time,"%Y-%m-%d")
| search NOT [ | inputlookup Date_Test.csv | fields HDate ]
| stats count
| where count&amp;gt;0&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2025 22:06:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746787#M241714</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-22T22:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746815#M241717</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you so much for the feedback&lt;BR /&gt;&lt;BR /&gt;as to answering your question&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"Although I'm confused as to why you couldn't do this?&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;index=xxxxxx | eval HDate=strftime(_time,"%Y-%m-%d") | search NOT [ | inputlookup Date_Test.csv | fields HDate ] | stats count | where count&amp;gt;0"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Would this also help capture if there was 0 events?&amp;nbsp; The Goal is to have the Alert Trigger anything except 1 event , so !=1&amp;nbsp; .&lt;BR /&gt;It needs to alert if&amp;nbsp; there is 0 events found OR more than 1 event.&lt;BR /&gt;&lt;BR /&gt;Either way I have a scenario where there is 0 events BUT! Its a Mute date on my Lookup table and it still fired an alert.&lt;BR /&gt;Its either that or because its was a Mute date that there might have been 1 event but since its a Mute date it changed it to 0 event Still causing the Alert to fire.&lt;BR /&gt;&lt;BR /&gt;Let me know if you need more clarification and I can post what I have setup&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 05:15:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746815#M241717</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-23T05:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746821#M241718</link>
      <description>&lt;P&gt;This is not a good use of inputlookup. &amp;nbsp;The better command to use is lookup. &amp;nbsp;You then count how many events do not match&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=xxxxxx
| eval HDate=strftime(_time,"%Y-%m-%d")
| lookup Date_Test.csv HDate output HDate as match
| where isnull(match)
| stats count values(Hdate)
| where count != 1&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I added values(Hdate) in speculation. &amp;nbsp;Don't include it in your alert if the values are not useful.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 06:31:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746821#M241718</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-05-23T06:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746822#M241719</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/256484"&gt;@Cheng2Ready&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;please try this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=xxxxxx
| eval HDate=strftime(_time,"%Y-%m-%d")
| stats count BY HDate
| eval type="events"
| append [ | inputlookup Date_Test.csv | eval count=0, type="lookup" | fields HDate count type ]
| stats 
     sum(count) AS total 
     values(type) AS type
     dc(type) AS type_count
     BY HDate 
| where total=0 OR (total&amp;gt;1 AND type_count=1 AND type="events"&lt;/LI-CODE&gt;&lt;P&gt;in this way, with the first condition (total=0) you check if there's some date without events and with the scond one (total&amp;gt;1 AND type_count=1 AND type="events") you check that there are events with dates not present in the lookup.&lt;/P&gt;&lt;P&gt;The solution has only one issue, that's inside the requirement: you need to continously update the lookup otherwise you'll have false positives created by the old dates in the lookup.&lt;/P&gt;&lt;P&gt;Only for discussing: what do you want to check?&lt;/P&gt;&lt;P&gt;maybe there's another easier solution.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 06:32:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746822#M241719</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-05-23T06:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746867#M241722</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I still get alerted, I added today's date so it should of Muted the Alert, but it didnt&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1748020507020.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39134iBF585818735ADB39/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1748020507020.png" alt="Cheng2Ready_0-1748020507020.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_1-1748020527777.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39135iE31852F20D1A96BB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_1-1748020527777.png" alt="Cheng2Ready_1-1748020527777.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_2-1748020535651.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39136i5B89FBBD5B614B25/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_2-1748020535651.png" alt="Cheng2Ready_2-1748020535651.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_3-1748020548171.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39137iA0825DF3ADE73AA8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_3-1748020548171.png" alt="Cheng2Ready_3-1748020548171.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 17:24:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746867#M241722</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-23T17:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746870#M241723</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;&lt;BR /&gt;tried this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1748021930713.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39139i8527C2457975F679/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1748021930713.png" alt="Cheng2Ready_0-1748021930713.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;is it suppose to return the lookup table?&lt;BR /&gt;&lt;BR /&gt;and it Still Alerted&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1748022172663.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39140i1E25514572E49F00/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1748022172663.png" alt="Cheng2Ready_0-1748022172663.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Only for discussing: what do you want to check?&lt;/SPAN&gt;&lt;BR /&gt;So&amp;nbsp;&lt;BR /&gt;the Goal here is to check&lt;BR /&gt;if there is More than 1 Event Alert&lt;BR /&gt;if there is 0 Event Alert&lt;BR /&gt;&lt;BR /&gt;Issue currently facing&lt;BR /&gt;Currently the Search is look at 0 event so on default it will always alert because there is 0 event&lt;BR /&gt;What I am trying to test is the Mute in effect.&lt;BR /&gt;on the Lookuptable Ive added Today's date to see if it will take in effect and looks like I am still being Alerted.&lt;BR /&gt;Looking for answers to fix the Alert to MUTE on the Dates ive included in the lookuptable&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 17:43:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746870#M241723</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-23T17:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746883#M241724</link>
      <description>&lt;P&gt;I am confused. &amp;nbsp;You say that you only want to suppress alert when count is 1. &amp;nbsp;If count is greater than 1 or if count is 0, you want to send alert. &amp;nbsp;In your screenshot, you get count 0 - so the alert is valid. &amp;nbsp;No?&lt;/P&gt;</description>
      <pubDate>Sat, 24 May 2025 17:20:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746883#M241724</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-05-24T17:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746924#M241730</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp; hi so I only want to suppress alert on the dates of the lookup table.&lt;/P&gt;&lt;P&gt;The condition for the alert is to fire if the resulted does not equal to 1&lt;/P&gt;&lt;P&gt;If your pointing out my screen shot please let me know which to adjust to the correct format so I can try implement it correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 May 2025 14:12:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746924#M241730</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-26T14:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746944#M241733</link>
      <description>&lt;P&gt;To clarify, there are two distinct aspects in your requirements:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;If the date of the event matches that in the lookup, do not send alert no matter what search result is.&lt;/LI&gt;&lt;LI&gt;Only on days that do not match any date in the lookup, send alert if search result is 0 or greater than 1.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;If this is true, event count must be before date match or together with date match.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=xxxxxx
| eval HDate=strftime(_time,"%Y-%m-%d")
| lookup Date_Test.csv HDate output HDate as match
| stats count values(match) as match by HDate
| where isnull(match) AND count != 1&lt;/LI-CODE&gt;&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;by HDate&lt;/FONT&gt; clause is to validate event date in case the search crosses calendar dates.&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 04:43:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/746944#M241733</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2025-05-27T04:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to Mute Alert using Lookup table</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/747020#M241742</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Good Morning I've updated the Search query, let me know if anything needs to be adjusted.&lt;BR /&gt;&lt;BR /&gt;So far the Alert is not firing. My index search is looking for something&amp;nbsp; that doesn't exist so it should always alert unless I update the Lookup table to today's date(5/27/2025) to mute.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_0-1748364982010.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39167i627575EC22AA6527/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_0-1748364982010.png" alt="Cheng2Ready_0-1748364982010.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_1-1748365026160.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39168i1B0BFC20E2B9F6A8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_1-1748365026160.png" alt="Cheng2Ready_1-1748365026160.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_2-1748365244253.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39187i8880435048ECF064/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_2-1748365244253.png" alt="Cheng2Ready_2-1748365244253.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Cheng2Ready_4-1748365321556.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39189i7D5AA0605B574CDB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Cheng2Ready_4-1748365321556.png" alt="Cheng2Ready_4-1748365321556.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 17:05:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-Mute-Alert-using-Lookup-table/m-p/747020#M241742</guid>
      <dc:creator>Cheng2Ready</dc:creator>
      <dc:date>2025-05-27T17:05:07Z</dc:date>
    </item>
  </channel>
</rss>

