4 Subscribing to Messages
Oracle WebLogic Server logging services provides the ability to create and subscribe a message handler. When WebLogic Server message catalogs and the NonCatalogLogger generate messages, they distribute their messages to a java.util.logging.Logger
object. The Logger object allocates a WLLogRecord object to describe the message and publishes the WLLogRecord to any message handler that has subscribed to the Logger.
For more information about WebLogic Server loggers and handlers, see The Role of Logger and Handler Objects.
- Overview of Message Handlers
WebLogic Server instantiates and subscribes a set of message handlers that receive and print log messages. - Creating and Subscribing a Handler: Main Steps
A handler that you create and subscribe to aLogger
object receives all messages that satisfy the level and filter criteria of the logger. Your handler can specify additional level and filter criteria so that it responds only to a specific set of messages that the logger publishes. - Example: Subscribing to Messages in a Server JVM
To subscribe to messages in a server JVM, create a handler that connects to a JDBC data source and issues SQL statements that insert messages into a database table. - Comparison of Java Logging Handlers with JMX Listeners
You can use either Java Logging Handlers or a Java Management Extensions (JMX) listener to receive log messages.
Overview of Message Handlers
Logger
objects (see Figure 4-1).
For example, if your application runs in a client JVM and you want the application to listen for the messages that your application generates, you can create a handler and subscribe it to the Logger
object in the client JVM. If your application receives a log message that signals the failure of a specific subsystem, it can perform actions such as:
-
E-mail the log message to the WebLogic Server administrator.
-
Shut down or restart itself or its subcomponents.
Note:
When creating your own message handlers, be careful to avoid executing custom code which runs in the WebLogic Server process before the server initialization has completed and the server has come to a running state. In some cases, custom code can interfere with server services which are being initialized. For example, custom log handlers that make an outbound RMI call which use the
PortableRemoteObject
before the IIOP server service is initialized, can cause server startup to fail.
Parent topic: Subscribing to Messages
Creating and Subscribing a Handler: Main Steps
A handler that you create and subscribe to a Logger
object receives all messages that satisfy the level and filter criteria of the logger. Your handler can specify additional level and filter criteria so that it responds only to a specific set of messages that the logger publishes.
To create and subscribe a handler:
-
Create a handler class that includes the following minimal set of import statements:
import java.util.logging.Handler; import java.util.logging.LogRecord; import java.util.logging.ErrorManager; import weblogic.logging.WLLogRecord; import weblogic.logging.WLLevel; import weblogic.logging.WLErrorManager; import weblogic.logging.LoggingHelper;
-
In the handler class, extend
java.util.logging.Handler
. -
In the handler class, implement the
Handler.publish(LogRecord record)
method.This method:
-
Casts the
LogRecord
objects that it receives asWLLogRecord
objects. -
Applies any filters that have been set for the handler.
-
If the
WLLogRecord
object satisfies the criteria of any filters, the method usesWLLogRecord
methods to retrieve data from the messages. -
Optionally writes the message data to one or more resources.
-
-
In the handler class, implement the
Handler.flush
andHandler.close
methods.All handlers that work with resources should implement the
flush
method so that it flushes any buffered output and theclose
method so that it closes any open resources.When the parent
Logger
object shuts down, it calls theHandler.close
method on all of its handlers. The close method calls theflush
method and then executes its own logic. -
Create a filter class that specifies which types of messages your
Handler
object should receive. See Setting a Filter for Loggers and Handlers. -
Create a class that invokes one of the following
LoggingHelper
methods:-
getClientLogger
if the current context is a client JVM. -
getServerLogger
if the current context is a server JVM and you want to attach a handler to the serverLogger
object. -
getDomainLogger
if the current context is the Administration Server and you want to attach a handler to the domainLogger
object.LoggingHelper.getDomainLogger()
retrieves theLogger
object that manages the domain log. You can subscribe a custom handler to this logger and process log messages from all the servers in a single location.
-
-
In this class, invoke the
Logger.addHandler(Handler myHandler)
method. -
Optional. Invoke the
Logger.setFilter(Filter myFilter)
method to set a filter.
Parent topic: Subscribing to Messages
Example: Subscribing to Messages in a Server JVM
-
A
Handler
class. See Example: Implementing a Handler Class. -
A
Filter
class. See Setting a Filter for Loggers and Handlers. -
A class that subscribes the handler and filter to a server's
Logger
class. See Example: Subscribing to a Logger Class.
Parent topic: Subscribing to Messages
Example: Implementing a Handler Class
The example Handler
class in Example 4-1 writes messages to a database by doing the following:
-
Extends
java.util.logging.Handler
. -
Constructs a
javax.naming.InitialContext
object and invokes theContext.lookup
method to look up a data source namedmyPoolDataSource
. -
Invokes the
javax.sql.DataSource.getConnection
method to establish a connection with the data source. -
Implements the
setErrorManager
method, which constructs ajava.util.logging.ErrorManager
object for this handler.If this handler encounters any error, it invokes the error manager's
error
method. Theerror
method in this example:-
Prints an error message to standard error.
-
Disables the handler by invoking
LoggingHelper.getServerLogger().removeHandler(MyJDBCHandler.this)
.Note:
Instead of defining the
ErrorManager
class in a separate class file, the example includes theErrorManager
as an anonymous inner class.
For more information about error managers, see the API documentation for the
java.util.logging.ErrorManager
class athttp://docs.oracle.com/javase/8/docs/api/java/util/logging/ErrorManager.html
. -
-
Implements the
Handler.publish(LogRecord record)
method. The method does the following:-
Casts each
LogRecord
object that it receives as aWLLogRecord
objects. -
Calls an
isLoggable
method to apply any filters that are set for the handler. TheisLoggable
method is defined at the end of this handler class. -
Uses
WLLogRecord
methods to retrieve data from the messages.For more information about
WLLogRecord
methods, see the description of theweblogic.logging.WLLogRecord
class in Java API Reference for Oracle WebLogic Server. -
Formats the message data as a SQL
prepareStatement
and executes the database update.The schema for the table used in the example is as follows:
Table 4-1 Schema for Database Table in Handler Example
Name Null? Type MSGID
n/a
CHAR(25)
LOGLEVEL
n/a
CHAR(25)
SUBSYSTEM
n/a
CHAR(50)
MESSAGE
n/a
CHAR(1024)
-
-
Invokes a
flush
method to flush the connection. -
Implements the
Handler.close
method to close the connection with the data source.When the parent
Logger
object shuts down, it calls theHandler.close
method, which calls theHandler.flush
method before executing its own logic.
Example 4-1 illustrates the steps described in this section.
Example 4-1 Implementing a Handler Class
import java.util.logging.Handler; import java.util.logging.LogRecord; import java.util.logging.Filter; import java.util.logging.ErrorManager; import weblogic.logging.WLLogRecord; import weblogic.logging.WLLevel; import weblogic.logging.WLErrorManager; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; import java.sql.Connection; import java.sql.SQLException; import java.sql.Statement; import java.sql.PreparedStatement; import weblogic.logging.LoggingHelper; public class MyJDBCHandler extends Handler { private Connection con = null; private PreparedStatement stmt = null; public MyJDBCHandler() throws NamingException, SQLException { InitialContext ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("myPoolDataSource"); con = ds.getConnection(); PreparedStatement stmt = con.prepareStatement setErrorManager(new ErrorManager() { public void error(String msg, Exception ex, int code) { System.err.println("Error reported by MyJDBCHandler " + msg + ex.getMessage()); //Removing any prior istantiation of this handler LoggingHelper.getServerLogger().removeHandler( MyJDBCHandler.this); } }); } public void publish(LogRecord record) { WLLogRecord rec = (WLLogRecord)record; if (!isLoggable(rec)) return; try { ("INSERT INTO myserverLog VALUES (?, ?, ? ,?)"); stmt.setEscapeProcessing(true); stmt.setString(1, rec.getId()); stmt.setString(2, rec.getLevel().getLocalizedName()); stmt.setString(3, rec.getLoggerName()); stmt.setString(4, rec.getMessage()); stmt.executeUpdate(); flush(); } catch(SQLException sqex) { reportError("Error publihsing to SQL", sqex, ErrorManager.WRITE_FAILURE); } } public void flush() { try { con.commit(); } catch(SQLException sqex) { reportError("Error flushing connection of MyJDBCHandler", sqex, ErrorManager.FLUSH_FAILURE); } } public boolean isLoggable(LogRecord record) { Filter filter = getFilter(); if (filter != null) { return filter.isLoggable(record); } else { return true; } } public void close() { try { con.close(); } catch(SQLException sqex) { reportError("Error closing connection of MyJDBCHandler", sqex, ErrorManager.CLOSE_FAILURE); } } }
Parent topic: Example: Subscribing to Messages in a Server JVM
Example: Subscribing to a Logger Class
The example Logger
class in Example 4-2 does the following:
-
Invokes the
LoggingHelper.getServerLogger
method to retrieve theLogger
object. -
Invokes the
Logger.addHandler(Handler myHandler)
method. -
Invokes the
Logger.getHandlers
method to retrieve all handlers of theLogger
object. -
Iterates through the array until it finds
myHandler
. -
Invokes the
Handler.setFilter(Filter myFilter)
method.
If you wanted your handler and filter to subscribe to the server's Logger
object each time the server starts, you could deploy this class as a WebLogic Server startup class.
Example 4-2 Subscribing to a Logger Class
import java.util.logging.Logger; import java.util.logging.Handler; import java.util.logging.Filter; import java.util.logging.LogRecord; import weblogic.logging.LoggingHelper; import weblogic.logging.FileStreamHandler; import weblogic.logging.WLLogRecord; import weblogic.logging.WLLevel; import java.rmi.RemoteException; import weblogic.jndi.Environment; import javax.naming.Context; public class LogConfigImpl { public void configureLogger() throws RemoteException { Logger logger = LoggingHelper.getServerLogger(); try { Handler h = null; h = new MyJDBCHandler(); logger.addHandler(h); h.setFilter(new MyFilter()); } catch(Exception nmex) { System.err.println("Error adding MyJDBCHandler to logger " + nmex.getMessage()); logger.removeHandler(h); } } public static void main(String[] argv) throws Exception { LogConfigImpl impl = new LogConfigImpl(); impl.configureLogger(); } }
Parent topic: Example: Subscribing to Messages in a Server JVM
Comparison of Java Logging Handlers with JMX Listeners
Prior to WebLogic Server 8.1, the only technique for receiving messages from the WebLogic logging services was to create a Java Management Extensions (JMX) listener and register it with a LogBroadcasterRuntimeMBean
. With the release of WebLogic Server 8.1, you can also use Java Logging handlers to receive (subscribe to) log messages.
While both techniques - Java Logging handlers and JMX listeners - provide similar results, the Java Logging APIs include a Formatter
class that a Handler
object can use to format the messages that it receives. JMX does not offer similar APIs for formatting messages. For more information about formatters, see the API documentation for the Formatter
class at http://docs.oracle.com/javase/8/docs/api/java/util/logging/Formatter.html
.
In addition, the Java Logging Handler
APIs are easier to use and require fewer levels of indirection than JMX APIs. For example, the following lines of code retrieve a Java Logging Logger
object and subscribe a handler to it:
Logger logger = LoggingHelper.getServerLogger(); Handler h = null; h = new MyJDBCHandler(); logger.addHandler(h)
To achieve a similar result by registering a JMX listener, you must use lines of code similar to Example 4-3. The code looks up the MBeanHome
interface, looks up the RemoteMBeanServer
interface, looks up the LogBroadcasterRuntimeMBean
, and then registers the listener.
Optimally, you would use Java Logging handlers to subscribe to log messages on your local machine and JMX listeners to receive log messages from a remote machine. If you are already using JMX for monitoring and you simply want to listen for log messages, not to change their formatting or reroute them to some other output, use JMX listeners. Otherwise, use the Java Logging handlers.
Example 4-3 Registering a JMX Listener
MBeanHome home = null; RemoteMBeanServer rmbs = null; //domain variables String url = "t3://localhost:7001"; String serverName = "Server1"; String username = "weblogic"; String password = "weblogic"; //Using MBeanHome to get MBeanServer. try { Environment env = new Environment(); env.setProviderUrl(url); env.setSecurityPrincipal(username); env.setSecurityCredentials(password); Context ctx = env.getInitialContext(); //Getting the Administration MBeanHome. home = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME); System.out.println("Got the Admin MBeanHome: " + home ); rmbs = home.getMBeanServer(); } catch (Exception e) { System.out.println("Caught exception: " + e); } try { //Instantiating your listener class. MyListener listener = new MyListener(); MyFilter filter = new MyFilter(); //Construct the WebLogicObjectName of the server's //log broadcaster. WebLogicObjectName logBCOname = new WebLogicObjectName("TheLogBroadcaster", "LogBroadcasterRuntime", domainName, serverName); //Passing the name of the MBean and your listener class to the //addNotificationListener method of MBeanServer. rmbs.addNotificationListener(logBCOname, listener, filter, null); } catch(Exception e) { System.out.println("Exception: " + e); } }
Parent topic: Subscribing to Messages