import java.util.Collection;
import java.util.Collections;
import java.util.List;
+import java.util.Set;
+import java.util.TreeSet;
import java.util.logging.Handler;
import java.util.logging.LogManager;
import java.util.logging.Logger;
@Override
public Collection<String> listAvailableEvents() {
- List<String> ret = new ArrayList<String>();
+ Set<String> ret = new TreeSet<String>();
List<String> loggersNames = Collections.list(LogManager.getLogManager().getLoggerNames());
for (String name : loggersNames) {
* Skip the root logger. An empty string is not a valid event name
* in LTTng.
*/
- if (name.equals("")) {
+ if (name.equals("") || name.equals("global")) {
continue;
}
return true;
}
}
+
+ /*
+ * A parent logger, if any, may be connected to an LTTng handler. In
+ * this case, we will want to include this child logger in the output,
+ * since it will be accessible by LTTng.
+ */
+ Logger parent = logger.getParent();
+ if (parent != null) {
+ return hasLttngHandlerAttached(parent);
+ }
+
+ /*
+ * We have reached the root logger and have not found any LTTng handler,
+ * this event will not be accessible.
+ */
return false;
}
package org.lttng.ust.agent.log4j;
-import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
+import java.util.Set;
+import java.util.TreeSet;
import org.apache.log4j.Appender;
+import org.apache.log4j.Category;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
import org.lttng.ust.agent.AbstractLttngAgent;
@Override
public Collection<String> listAvailableEvents() {
- List<String> ret = new ArrayList<String>();
+ Set<String> ret = new TreeSet<String>();
@SuppressWarnings("unchecked")
List<Logger> loggers = Collections.list(LogManager.getCurrentLoggers());
return ret;
}
- private static boolean hasLttngAppenderAttached(Logger logger) {
+ private static boolean hasLttngAppenderAttached(Category logger) {
@SuppressWarnings("unchecked")
List<Appender> appenders = Collections.list(logger.getAllAppenders());
for (Appender appender : appenders) {
return true;
}
}
+
+ /*
+ * A parent logger, if any, may be connected to an LTTng handler. In
+ * this case, we will want to include this child logger in the output,
+ * since it will be accessible by LTTng.
+ */
+ Category parent = logger.getParent();
+ if (parent != null) {
+ return hasLttngAppenderAttached(parent);
+ }
+
+ /*
+ * We have reached the root logger and have not found any LTTng handler,
+ * this event will not be accessible.
+ */
return false;
}
+
}