<?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 trigger alerts on the count of the value of a custom field in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620061#M77931</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249621"&gt;@olawalePS&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;insert the condition in the search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="authenticate" eventType="user.session.start" outcome.result="FAILURE"
| stats count by actor.alternateId
| where count&amp;gt;3&lt;/LI-CODE&gt;&lt;P&gt;and trigger the alert when results&amp;gt;0&lt;/P&gt;&lt;P&gt;then I don't like to have dots in a field so I prefer:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="authenticate" eventType="user.session.start" outcome.result="FAILURE"
| rename actor.alternateId AS alternateId
| stats count by alternateId
| where count&amp;gt;3&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Tue, 08 Nov 2022 08:57:38 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2022-11-08T08:57:38Z</dc:date>
    <item>
      <title>How to trigger alerts on the count of the value of a custom field?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620060#M77930</link>
      <description>&lt;P&gt;I am trying to create an alert for multiple failed logins but my query doesn't seem to work.&lt;BR /&gt;&lt;BR /&gt;The alert is detailed in the image attached, and the query is:&lt;BR /&gt;&lt;BR /&gt;index="authenticate" eventType="user.session.start" outcome.result="FAILURE"&lt;BR /&gt;| stats count by actor.alternateId&lt;BR /&gt;&lt;BR /&gt;Please help correct the query.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 16:00:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620060#M77930</guid>
      <dc:creator>olawalePS</dc:creator>
      <dc:date>2022-11-08T16:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger alerts on the count of the value of a custom field</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620061#M77931</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249621"&gt;@olawalePS&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;insert the condition in the search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="authenticate" eventType="user.session.start" outcome.result="FAILURE"
| stats count by actor.alternateId
| where count&amp;gt;3&lt;/LI-CODE&gt;&lt;P&gt;and trigger the alert when results&amp;gt;0&lt;/P&gt;&lt;P&gt;then I don't like to have dots in a field so I prefer:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="authenticate" eventType="user.session.start" outcome.result="FAILURE"
| rename actor.alternateId AS alternateId
| stats count by alternateId
| where count&amp;gt;3&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 08:57:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620061#M77931</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-11-08T08:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger alerts on the count of the value of a custom field</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620251#M77939</link>
      <description>&lt;P&gt;I modified the search but it still did not trigger an alert. is the cron job schedule configured correctly?&lt;BR /&gt;&lt;BR /&gt;I attached the screenshot of the config&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 11:16:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620251#M77939</guid>
      <dc:creator>olawalePS</dc:creator>
      <dc:date>2022-11-09T11:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger alerts on the count of the value of a custom field</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620254#M77940</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/249621"&gt;@olawalePS&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;your search is schedule to run one time a week (Monday at 6:00) on the last 10 minutes, is it correct?&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 11:43:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620254#M77940</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-11-09T11:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger alerts on the count of the value of a custom field</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620266#M77941</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;No, I want it to run every 10 minutes.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 12:19:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620266#M77941</guid>
      <dc:creator>olawalePS</dc:creator>
      <dc:date>2022-11-09T12:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to trigger alerts on the count of the value of a custom field</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620270#M77942</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;I have corrected the cron expression. Thanks for helping to point it out&lt;/P&gt;</description>
      <pubDate>Wed, 09 Nov 2022 12:34:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-trigger-alerts-on-the-count-of-the-value-of-a-custom/m-p/620270#M77942</guid>
      <dc:creator>olawalePS</dc:creator>
      <dc:date>2022-11-09T12:34:34Z</dc:date>
    </item>
  </channel>
</rss>

