WAS v8.5 > Troubleshoot > Add logging and tracing to the application > Programming with the JRas framework > Instrumenting an application with JRas extensions

Set up for stand-alone JRas operation

We can configure JRas operations to output trace data and logging messages to only user-defined locations.

The JRas framework described in this task and its sub-tasks is deprecated. However, we can achieve similar results using Java logging.

In stand-alone mode, messages and traces are logged only to user-defined logs. The following sample assumes that:

  1. Import the requisite JRas extensions classes:
    import com.ibm.ras.*; 
    import com.ibm.websphere.ras.*; 
  2. Import the user handler and formatter:

      import com.ibm.ws.ras.test.user.*;
  3. Declare the logger references:
    private RASMessageLogger msgLogger = null; 
      private RASTraceLogger trcLogger = null;
  4. Obtain a reference to the Manager class, create the loggers, and add the user handlers. Because loggers are named singletons, we can obtain a reference to the loggers in a number of places. One logical candidate for enterprise beans is the ejbCreate method. Make sure that multiple instances of the same user handler are not accidentally inserted into the same logger. Your initialization code must support this approach. The following sample is a message logger sample. The procedure for a trace logger is similar.
    com.ibm.websphere.ras.Manager mgr = com.ibm.websphere.ras.Manager.getManager(); 
        msgLogger = mgr.createRASMessageLogger("Acme", "WidgetCounter", "RasTest", 
                 myTestBean.class.getName()); 
        // Configure the message logger to use the message file defined in 
        //the ResourceBundle sample. 
        msgLogger.setMessageFile("acme.widgets.DefaultMessages"); 
    
        // Get a reference to the Handler and remove it from the logger. 
        RASIHandler aHandler = null; 
        Enumeration enum = msgLogger.getHandlers(); 
        while (enum.hasMoreElements()) { 
             aHandler = (RASIHandler)enum.nextElement(); 
             if (aHandler instanceof WsHandler) 
                  msgLogger.removeHandler(wsHandler); 
        } 
    
        // Create the user handler and formatter. Configure the formatter, 
        // then add it to the handler. 
        RASIHandler handler = new SimpleFileHandler("myHandler", "FileName"); 
        RASIFormatter formatter = new SimpleFormatter("simple formatter"); 
        formatter.addEventClass("com.ibm.ras.RASMessageEvent"); 
        handler.addFormatter(formatter); 
    
       // Add the Handler to the logger. Add the logger to the list of the 
       // handlers listeners, then set the handlers 
       // mask, which will update the loggers composite mask appropriately. 
       // WARNING - there is an order dependency here that must be followed. 
       msgLogger.addHandler(handler); 
       handler.addMaskChangeListener(msgLogger); 
       handler.setMessageMask(RASIMessageEvent.DEFAULT_MESSAGE_MASK); 
    


Related concepts:

JRas manager and logger instances


Related


Set up for integrated JRas operation
Set up for combined JRas operation


+

Search Tips   |   Advanced Search