DX Application Performance Management

  • 1.  EPAgent -- LDAP

    Posted Aug 02, 2011 10:24 AM
    We would like to monitoring LDAP with Introscope. I was thinking of an EPAgent that does an ldap query, tracks the response time, and enters some of the query information.

    Is anyone aware of an EPAgent for LDAP or another method of monitoring LDAP with Introscope?

    Thanks, JKW


  • 2.  RE: EPAgent -- LDAP

    Posted Aug 02, 2011 12:08 PM
    I am also interested in this. All help is greatly appreciated.

    We have webseals as well as ldap servers.


  • 3.  RE: EPAgent -- LDAP

    Posted Aug 08, 2011 10:38 AM
    For IBM LDAP's you can do
    ldapsearch -h $hostname -s base -b cn=monitor objectclass=*

    I do this in a Perl EPA Extension and write all Numeric Results to a LongCounter


  • 4.  RE: EPAgent -- LDAP

    Posted Nov 09, 2012 12:16 PM
    Can you share the EPAgent that you for ldap monitoring?


  • 5.  RE: EPAgent -- LDAP

    Posted Nov 09, 2012 02:07 PM
    I cooked up something in java that will bind to an LDAP and calculate the time taken for an predefined query. Let me know if this what you are looking for.

    Also, for this to work, you'll need the bind ID and password, and an user ID and password.

    Thanks,
    A


  • 6.  RE: EPAgent -- LDAP

    Posted Nov 12, 2012 04:21 AM
    We have a fairly extensive moniitoring setup for LDAP using EPA.

    We use various lpapsearch commands to pull back a variety of performance data. There scripts are run via cron every 5 minutes and the output is written to a text file.
    This text file is then parsed by an EPA scripts and the data below is turned into Wily metric data.

    "Bind Access";
    "Cache Entries in cache";
    "Connections";
    "DB Cache hit";
    "Entry Cache hit";
    "Readers Waiting";
    "Response Time";
    "Writers Waiting";

    We also monitor the time spent executing the ldapsearch itself (using the EPAgent plugin data) and we also monitor basic LDAP process availability.


  • 7.  RE: EPAgent -- LDAP

    Posted Jan 28, 2014 03:37 PM

    Can you share the perl script that you have?