EventCounter.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.metrics.jvm;
  19. import org.apache.commons.logging.Log;
  20. import org.apache.commons.logging.LogFactory;
  21. import org.apache.log4j.AppenderSkeleton;
  22. import org.apache.log4j.Level;
  23. import org.apache.log4j.spi.LoggingEvent;
  24. /**
  25.  * A log4J Appender that simply counts logging events in three levels:
  26.  * fatal, error and warn.
  27.  */
  28. public class EventCounter extends AppenderSkeleton {
  29.         
  30.     private static final int FATAL = 0;
  31.     private static final int ERROR = 1;
  32.     private static final int WARN  = 2;
  33.     private static final int INFO  = 3;
  34.     
  35.     private static class EventCounts {
  36.         private final long[] counts = { 0, 0, 0, 0 };
  37.     
  38.         private synchronized void incr(int i) { 
  39.             ++counts[i]; 
  40.         }
  41.         
  42.         private synchronized long get(int i) { 
  43.             return counts[i]; 
  44.         }
  45.     }
  46.     private static EventCounts counts = new EventCounts();
  47.     
  48.     public static long getFatal() { 
  49.         return counts.get(FATAL); 
  50.     }
  51.     
  52.     public static long getError() { 
  53.         return counts.get(ERROR); 
  54.     }
  55.     
  56.     public static long getWarn() { 
  57.         return counts.get(WARN);  
  58.     }
  59.     
  60.     public static long getInfo() {
  61.         return counts.get(INFO);
  62.     }
  63.     
  64.     public void append(LoggingEvent event) {
  65.         Level level = event.getLevel();
  66.         if (level == Level.INFO) {
  67.             counts.incr(INFO);
  68.         }
  69.         else if (level == Level.WARN) {
  70.             counts.incr(WARN);
  71.         }
  72.         else if (level == Level.ERROR) {
  73.             counts.incr(ERROR);
  74.         }
  75.         else if (level == Level.FATAL) {
  76.             counts.incr(FATAL);
  77.         }
  78.     }
  79.     
  80.     // Strange: these two methods are abstract in AppenderSkeleton, but not
  81.     // included in the javadoc (log4j 1.2.13).
  82.     
  83.     public void close() {
  84.     }
  85.     public boolean requiresLayout() {
  86.         return false;
  87.     }
  88.     
  89.     
  90.     
  91. }