<?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 write a search to alert when a SiteMinder policy server or LDAP connection goes down? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229108#M67850</link>
    <description>&lt;P&gt;You may want to have a look at the &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.0.1/Alert/Aboutalerts"&gt;Splunk Alerting documentation&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jan 2018 13:06:55 GMT</pubDate>
    <dc:creator>brettcarroll</dc:creator>
    <dc:date>2018-01-16T13:06:55Z</dc:date>
    <item>
      <title>How write a search to alert when a SiteMinder policy server or LDAP connection goes down?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229105#M67847</link>
      <description>&lt;P&gt;We need to develop an alert when the SiteMinder policy server or ldap connection goes down. &lt;/P&gt;

&lt;P&gt;Can any one help with the search for this?&lt;BR /&gt;
Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jan 2016 19:31:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229105#M67847</guid>
      <dc:creator>krishnacasso</dc:creator>
      <dc:date>2016-01-11T19:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: How write a search to alert when a SiteMinder policy server or LDAP connection goes down?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229106#M67848</link>
      <description>&lt;P&gt;post some sample logs you have got? and post what do you have tried so far? &lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2017 18:35:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229106#M67848</guid>
      <dc:creator>praveenbandi</dc:creator>
      <dc:date>2017-02-08T18:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: How write a search to alert when a SiteMinder policy server or LDAP connection goes down?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229107#M67849</link>
      <description>&lt;P&gt;Hi Praveen,&lt;/P&gt;

&lt;P&gt;Please find the snap of log files below. &lt;BR /&gt;
I am trying to configure an alert if host is getting timed out at specific server(server1.abc.com) for continuously 5 Minutes. This alert should be based on time and not on the count. &lt;BR /&gt;
I have a field extraction done for {ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server1.abc.com:389}(Event)---&amp;gt;txt(field)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:637][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server1.abc.com:389

[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:637][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server2.abc.com:389

[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:67][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server3.abc.com:389

[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:37][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server1.abc.com:389

[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:67][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server1.abc.com:389[90530/2906]

[Wed Jan 09 2017 01:33:36][ConnMgr.cpp:63][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server1.abc.com:389

[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:67][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server3.abc.com:389

[90530/2906][Wed Jan 09 2017 01:33:36][ConnMgr.cpp:63][ERROR][sm-Ldap-080] ConnMgr (ldap_search_ext_s) in PingServer : Timed out at Server1.abc.com:389
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here is my search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=* host="finace.vendor.com" sourcetype="appsm" sm_txt="*ConnMgr (ldap_search_ext_s) in PingServer : Timed out at *:389*" | timechart span=5m dc(txt) 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is giving the count of that unique txt. I need to configure a alert if this dc(txt) is logged for continuously for 5 minutes like Alert should not be triggered if it dint get dc(txt) in 4th minute.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 12:45:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229107#M67849</guid>
      <dc:creator>krishnacasso</dc:creator>
      <dc:date>2020-09-29T12:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: How write a search to alert when a SiteMinder policy server or LDAP connection goes down?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229108#M67850</link>
      <description>&lt;P&gt;You may want to have a look at the &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.0.1/Alert/Aboutalerts"&gt;Splunk Alerting documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 13:06:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-write-a-search-to-alert-when-a-SiteMinder-policy-server-or/m-p/229108#M67850</guid>
      <dc:creator>brettcarroll</dc:creator>
      <dc:date>2018-01-16T13:06:55Z</dc:date>
    </item>
  </channel>
</rss>

