<?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 creating alert for alert in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489575#M8690</link>
    <description>&lt;P&gt;hi,&lt;/P&gt;

&lt;P&gt;i have a panel with all the alert details in it.&lt;BR /&gt;
now i want to create a separate alert for that panel like (if alerts are triggering within 10 mins span)&lt;BR /&gt;
can you help me in this?&lt;/P&gt;</description>
    <pubDate>Mon, 25 Nov 2019 05:36:53 GMT</pubDate>
    <dc:creator>Puvi</dc:creator>
    <dc:date>2019-11-25T05:36:53Z</dc:date>
    <item>
      <title>creating alert for alert</title>
      <link>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489575#M8690</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;

&lt;P&gt;i have a panel with all the alert details in it.&lt;BR /&gt;
now i want to create a separate alert for that panel like (if alerts are triggering within 10 mins span)&lt;BR /&gt;
can you help me in this?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 05:36:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489575#M8690</guid>
      <dc:creator>Puvi</dc:creator>
      <dc:date>2019-11-25T05:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: creating alert for alert</title>
      <link>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489576#M8691</link>
      <description>&lt;P&gt;This should help you get started&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_audit action="alert_fired" 
| rename ss_name AS alert_name
| sort alert_name, _time
| delta _time as timediff
| streamstats count as rownum by alert_name reset_on_change=true
| eval timediff=if(rownum==1, null(), abs(timediff))
| where timediff&amp;lt;600
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will give you all alerts which triggered less than 10 mins apart.&lt;/P&gt;

&lt;P&gt;hope this helps&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2019 13:02:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489576#M8691</guid>
      <dc:creator>arjunpkishore5</dc:creator>
      <dc:date>2019-11-25T13:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: creating alert for alert</title>
      <link>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489577#M8692</link>
      <description>&lt;P&gt;You can get a list of all non-expired alerts like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest/servicesNS/-/-alerts/fired_alerts/-
| table trigger_time author eai:acl.owner eai:acl.app savedsearch_name sid eai:acl.sharing digets_mode id published *
| rename eai:acl.* AS *
| where trigger_time &amp;gt;= relative_time(now(), "-10m@m")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Nov 2019 20:06:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/creating-alert-for-alert/m-p/489577#M8692</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-29T20:06:33Z</dc:date>
    </item>
  </channel>
</rss>

