KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JMX


1 /**
2  * Copyright (C) 2001-2003 France Telecom R&D
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  */

18
19
20 import org.objectweb.util.monolog.Monolog;
21 import org.objectweb.util.monolog.api.BasicLevel;
22 import org.objectweb.util.monolog.api.Handler;
23 import org.objectweb.util.monolog.api.Logger;
24 import org.objectweb.util.monolog.api.LoggerFactory;
25 import org.objectweb.util.monolog.api.MonologFactory;
26
27 import java.util.Date JavaDoc;
28
29 import javax.management.ListenerNotFoundException JavaDoc;
30 import javax.management.Notification JavaDoc;
31 import javax.management.NotificationEmitter JavaDoc;
32 import javax.management.NotificationListener JavaDoc;
33
34
35 /**
36  * This example showing how to use monolog (initialisation and instrumentation).
37  *
38  * @author Sebastien Chassande-Barrioz
39  */

40 public class JMX implements NotificationListener JavaDoc{
41     public static void main(String JavaDoc[] args) {
42         LoggerFactory lf;
43         switch(args.length) {
44         case 0:
45             //Let monolog find the monolog.properties in the classpath or use
46
// the default configuration
47
lf = Monolog.initialize();
48             break;
49         case 1:
50             // A monolog configuration file has been specified, then use it
51
lf = Monolog.getMonologFactory(args[0]);
52             break;
53         default:
54             System.out.println("Syntax error!\nUsage: java Simple [<monolog file name>]");
55             return;
56         }
57         JMX s = new JMX(lf);
58         s.activateNodification();
59         s.foo();
60         s.desactivateNodification();
61     }
62
63     private static final boolean DEBUG = false;
64
65     protected Logger logger = null;
66
67     public JMX(LoggerFactory lf) {
68         logger = lf.getLogger("monolog.examples.jmx");
69     }
70
71     private void activateNodification() {
72         Handler handler = Monolog.getMonologFactory().getHandler("jmxHandler");
73         if (handler == null || !(handler instanceof NotificationEmitter JavaDoc)) {
74             logger.log(BasicLevel.WARN, "No JMX handler in the configuration");
75         } else {
76             ((NotificationEmitter JavaDoc) handler).addNotificationListener(this, null, null);
77         }
78     }
79     private void desactivateNodification() {
80         Handler handler = Monolog.getMonologFactory().getHandler("jmxHandler");
81         if (handler == null || !(handler instanceof NotificationEmitter JavaDoc)) {
82             logger.log(BasicLevel.WARN, "No JMX handler in the configuration");
83         } else {
84             try {
85                 logger.log(BasicLevel.DEBUG, "remove notification");
86                 ((NotificationEmitter JavaDoc) handler).removeNotificationListener(this, null, null);
87             } catch (ListenerNotFoundException JavaDoc lnfe){
88                 logger.log(BasicLevel.ERROR,
89                         "Error when desactivate the notification:", lnfe);
90             }
91         }
92     }
93     
94     public void foo() {
95         logger.log(BasicLevel.INFO, "foo : hello my favourite logger in info");
96         logger.log(BasicLevel.WARN, "bar : warning !");
97         logger.log(BasicLevel.ERROR, "This is a thrown exception", new Exception JavaDoc());
98     }
99     
100     public void handleNotification(
101             Notification JavaDoc notification,
102             java.lang.Object JavaDoc handback) {
103         StringBuffer JavaDoc msg = new StringBuffer JavaDoc(250);
104         msg.append("Notification ("
105                 + new Date JavaDoc(notification.getTimeStamp()) + ")");
106         msg.append("\n\t-Type: " + notification.getType());
107         msg.append("\n\t-Src: " + notification.getSource());
108         msg.append("\n\t-TimeStamp: " + notification.getTimeStamp());
109         msg.append("\n\t-SequenceNumber: " + notification.getSequenceNumber());
110         msg.append("\n\t-Message: " + notification.getMessage());
111         msg.append("\n\t-UserData: " + notification.getUserData());
112         msg.append("\n");
113         System.out.println(msg);
114     }
115 }
116
Free Books   Free Magazines  
Popular Tags