All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gemstone.gemfire.management.internal.beans.stats.MBeanStatsMonitor Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you
 * may not use this file except in compliance with the License. You
 * may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied. See the License for the specific language governing
 * permissions and limitations under the License. See accompanying
 * LICENSE file.
 */
package com.gemstone.gemfire.management.internal.beans.stats;

import java.util.HashMap;
import java.util.Map;

import com.gemstone.gemfire.StatisticDescriptor;
import com.gemstone.gemfire.Statistics;
import com.gemstone.gemfire.distributed.internal.InternalDistributedSystem;
import com.gemstone.gemfire.i18n.LogWriterI18n;
import com.gemstone.gemfire.internal.statistics.StatisticId;
import com.gemstone.gemfire.internal.statistics.StatisticNotFoundException;
import com.gemstone.gemfire.internal.statistics.StatisticsListener;
import com.gemstone.gemfire.internal.statistics.StatisticsNotification;
import com.gemstone.gemfire.internal.statistics.ValueMonitor;

/**
 * Class to get mappings of stats name to their values
 * 
 * @author rishim
 * 
 */
public class MBeanStatsMonitor implements StatisticsListener {

  protected ValueMonitor monitor;

  /**
   * Map which contains statistics with their name and value
   */
  protected DefaultHashMap statsMap;

  protected String monitorName;
  
  private LogWriterI18n logger;

  public MBeanStatsMonitor(String name) {
    this.monitorName = name;
    this.monitor = new ValueMonitor();
    this.statsMap = new DefaultHashMap();
    this.logger = InternalDistributedSystem.getLoggerI18n();

  }

  public void addStatisticsToMonitor(Statistics stats) {
    monitor.addListener(this);// if already listener is added this will be a no-op
    monitor.addStatistics(stats);
  }

  public void removeStatisticsFromMonitor(Statistics stats) {
    statsMap.clear();
  }

  public void stopListener() {
    monitor.removeListener(this);
  }

  public Number getStatistic(String statName) {
    return statsMap.get(statName) != null ? statsMap.get(statName) : 0;
  }

  @Override
  public void handleNotification(StatisticsNotification notification) {

    for (StatisticId statId : notification) {
      StatisticDescriptor descriptor = statId.getStatisticDescriptor();
      String name = descriptor.getName();
      Number value;
      try {
        value = notification.getValue(statId);
      } catch (StatisticNotFoundException e) {
        value = 0;
      }
      log(name,value);
      statsMap.put(name, value);

    }
  }
  
  protected void log(String name, Number value){

    if (logger != null && logger.finestEnabled()) {
      logger.finest("Monitor = " + monitorName + " descriptor = " + name + " And Value = " + value);
    }
  }

  public static class DefaultHashMap {
    private Map internalMap = new HashMap();

    public DefaultHashMap() {
    }

    public Number get(String key) {
      return internalMap.get(key) != null ? internalMap.get(key) : 0;
    }

    public void put(String key, Number value) {
      internalMap.put(key, value);
    }

    public void clear() {
      internalMap.clear();
    }
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy