<?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: Need an help with the search in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633343#M220017</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/227250"&gt;@Tom_Lundie&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A)Why&amp;nbsp; we have taken "-30min"&amp;nbsp;&lt;/P&gt;&lt;P&gt;B) do we need to add the previous founddate values in the lookup table.&lt;/P&gt;&lt;P&gt;C) why the throttle duration is 5 years ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;</description>
    <pubDate>Sun, 05 Mar 2023 20:22:02 GMT</pubDate>
    <dc:creator>AL3Z</dc:creator>
    <dc:date>2023-03-05T20:22:02Z</dc:date>
    <item>
      <title>Help with the search for a reassigned alert?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633195#M219958</link>
      <description>&lt;P&gt;Hi, Need a search for the below scenario,&lt;/P&gt;&lt;DIV&gt;&lt;P&gt;If a previously assigned alert is reassigned to a different user on the portal, it will trigger a new alert because the updated time is considered in the cs. For example, with alert&amp;nbsp; was initially detected on the&amp;nbsp; portal&amp;nbsp; However, when I reassigned the alert to myself last week, a new alert was generated based on the updated time field.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Mar 2023 15:12:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633195#M219958</guid>
      <dc:creator>AL3Z</dc:creator>
      <dc:date>2023-03-07T15:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need an help with the search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633336#M220013</link>
      <description>&lt;P&gt;You can throttle the Correlation Search.&lt;BR /&gt;&lt;BR /&gt;You can read more about throttling &lt;A href="https://docs.splunk.com/Documentation/ES/7.1.0/Admin/Configurecorrelationsearches#Throttle_the_number_of_response_actions_generated_by_a_correlation_search" target="_self"&gt;here&lt;/A&gt;. You could throttle by _id for a sufficient enough time to stop the alerts from re-firing.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 17:47:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633336#M220013</guid>
      <dc:creator>Tom_Lundie</dc:creator>
      <dc:date>2023-03-05T17:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need an help with the search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633337#M220014</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/227250"&gt;@Tom_Lundie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you pls help me with the search with the founddate.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 18:05:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633337#M220014</guid>
      <dc:creator>AL3Z</dc:creator>
      <dc:date>2023-03-05T18:05:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need an help with the search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633338#M220015</link>
      <description>&lt;P&gt;There are three options that I can see here, you can either:&lt;BR /&gt;a) Make sure that the foundDate occured since the last CS-run so that the CS only ever fires for new events.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval founddate_ts = strptime(foundDate, "%Y-%m-%dT%H:%M:%S.%fZ")
| where founddate_ts &amp;gt; relative_time(now(), "-30min")&lt;/LI-CODE&gt;&lt;P&gt;b) Maintain a lookup of fired alerts so that the same alert doesn't twice.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval id = _id
| search NOT [| inputlookup example_lookup | fields id | format]
| appendpipe [| fields id, _time | outputlookup append=t example_lookup]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;c) Throttle the alerts via the CS Configuration:&lt;BR /&gt;Throttle Duration: Five Years&lt;BR /&gt;Fields to Group By: _id&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;All three of these have pros / cons, so please experiment with these ideas to see what is right for you and your team.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 18:38:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633338#M220015</guid>
      <dc:creator>Tom_Lundie</dc:creator>
      <dc:date>2023-03-05T18:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Need an help with the search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633343#M220017</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/227250"&gt;@Tom_Lundie&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;A)Why&amp;nbsp; we have taken "-30min"&amp;nbsp;&lt;/P&gt;&lt;P&gt;B) do we need to add the previous founddate values in the lookup table.&lt;/P&gt;&lt;P&gt;C) why the throttle duration is 5 years ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;</description>
      <pubDate>Sun, 05 Mar 2023 20:22:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633343#M220017</guid>
      <dc:creator>AL3Z</dc:creator>
      <dc:date>2023-03-05T20:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need an help with the search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633403#M220038</link>
      <description>&lt;P&gt;A)Why&amp;nbsp; we have taken "-30min"&amp;nbsp;&lt;BR /&gt;This was just an example, ideally this value would match your CS scheduling window (factoring in event lag and search lag).&lt;/P&gt;&lt;P&gt;B) do we need to add the previous founddate values in the lookup table.&lt;BR /&gt;No, just the _id (as id in my example).&lt;/P&gt;&lt;P&gt;C) why the throttle duration is 5 years ?&lt;BR /&gt;This was an example that should be sufficiently long enough.&lt;BR /&gt;&lt;BR /&gt;All just example ideas for you to experiment with to see which one works.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 10:43:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Help-with-the-search-for-a-reassigned-alert/m-p/633403#M220038</guid>
      <dc:creator>Tom_Lundie</dc:creator>
      <dc:date>2023-03-06T10:43:08Z</dc:date>
    </item>
  </channel>
</rss>

