Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient
In directory vz-cvs-3.sog:/tmp/cvs-serv13438/src/org/sblim/cimclient
Modified Files:
Tag: Experimental
WBEMConfigurationProperties.java
Log Message:
3485074 - An Indication trace request
Index: WBEMConfigurationProperties.java
===================================================================
RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v
retrieving revision 1.17.2.26
retrieving revision 1.17.2.27
diff -u -d -r1.17.2.26 -r1.17.2.27
--- WBEMConfigurationProperties.java 13 Dec 2011 18:45:22 -0000 1.17.2.26
+++ WBEMConfigurationProperties.java 7 Feb 2012 03:15:28 -0000 1.17.2.27
@@ -1,5 +1,5 @@
/**
- * (C) Copyright IBM Corp. 2006, 2011
+ * (C) Copyright IBM Corp. 2006, 2012
*
* THIS FILE IS PROVIDED UNDER THE TERMS OF THE ECLIPSE PUBLIC LICENSE
* ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE
@@ -34,6 +34,7 @@
* 3206904 2011-05-03 blaschke-oss Indication listener deadlock causes JVM to run out sockets
* 3288721 2011-05-20 blaschke-oss Need the function of indication reordering
* 3459036 2011-12-13 blaschke-oss Linked list for RI queue not efficient for many LDs
+ * 3485074 2012-02-06 blaschke-oss An Indication trace request
*/
package org.sblim.cimclient;
@@ -817,4 +818,30 @@
*/
public static final String LISTENER_RELIABLE_INDICATION_HASHTABLE_CAPACITY = "sblim.wbem.listenerReliableIndicationHashtableCapacity";
+ /**
+ * <pre>
+ * The filter to use for tracing of incoming indications at the FINE level.
+ *
+ * If string is empty, no tracing of incoming indications will occur. If
+ * string is not empty, it identifies one or more properties to be included
+ * in the trace of all incoming indications. An optional class can be used
+ * to filter the output to include only those indications that contain the
+ * substring. For example, to trace the SequenceContext and SequenceNumber
+ * properties of all alerts, use the following:
+ *
+ * alert:sequencecontext,sequencenumber
+ *
+ * To trace the IndicationTime of all indications, use the following:
+ *
+ * indicationtime
+ *
+ * Note: This property has no effect unless tracing is enabled. See the
+ * sblim.wbem.traceFileLevel property.
+ *
+ * Type: String
+ * Recognition: On next creation of WBEMListener
+ * Format: [class:]property[,property]*
+ * </pre>
+ */
+ public static final String LISTENER_INDICATION_TRACE_FILTER = "sblim.wbem.listener.IndicationTraceFilter";
}
|