From d90a8f4889fdc359bfe5f089b937b303a4d58973 Mon Sep 17 00:00:00 2001
From: fguigues <fguigues@localhost>
Date: Fri, 12 Dec 2008 13:13:01 +0000
Subject: [PATCH] * Ability to create monitor provider with hierarchical naming * Modification of Network Monitor provider names (includes hierarchical naming) * Provide basic Monitoring objects. * Add monitoring instrumentation for the connection handlers. * Add the ability to do a subtree search in the monitor backend.
---
opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java b/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
index 080ab42..8b5da30 100644
--- a/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
+++ b/opends/src/server/org/opends/server/protocols/ldap/LDAPConnectionHandler.java
@@ -293,7 +293,7 @@
if (currentConfig.isAllowLDAPV2() != config.isAllowLDAPV2()) {
if (config.isAllowLDAPV2()) {
if (statTracker == null) {
- statTracker = new LDAPStatistics(handlerName
+ statTracker = new LDAPStatistics(this,handlerName
+ " Statistics");
} else {
statTracker.clearStatistics();
@@ -736,7 +736,7 @@
}
// Perform any additional initialization that might be required.
- statTracker = new LDAPStatistics(handlerName + " Statistics");
+ statTracker = new LDAPStatistics(this, handlerName + " Statistics");
// Attempt to bind to the listen port on all configured addresses to
// verify whether the connection handler will be able to start.
--
Gitblit v1.10.0