blob: e09ab08489464d02c5caad7c6075ba151546ffd1 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You 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.
*/
package org.apache.geode.management.internal.beans;
import org.apache.geode.Statistics;
import org.apache.geode.cache.asyncqueue.AsyncEventQueue;
import org.apache.geode.cache.asyncqueue.internal.AsyncEventQueueImpl;
import org.apache.geode.cache.asyncqueue.internal.AsyncEventQueueStats;
import org.apache.geode.management.internal.beans.stats.GatewaySenderOverflowMonitor;
import org.apache.geode.management.internal.beans.stats.MBeanStatsMonitor;
import org.apache.geode.management.internal.beans.stats.StatType;
import org.apache.geode.management.internal.beans.stats.StatsKey;
import org.apache.geode.management.internal.beans.stats.StatsRate;
public class AsyncEventQueueMBeanBridge {
private AsyncEventQueueImpl queueImpl;
private MBeanStatsMonitor monitor;
private GatewaySenderOverflowMonitor overflowMonitor;
private StatsRate lruEvictionsRate;
public AsyncEventQueueMBeanBridge(AsyncEventQueue queue) {
this.queueImpl = (AsyncEventQueueImpl) queue;
this.monitor =
new MBeanStatsMonitor("AsyncEventQueueMXBeanMonitor");
this.overflowMonitor = new GatewaySenderOverflowMonitor("GatewaySenderMXBeanOverflowMonitor");
addAsyncEventQueueStats(queueImpl.getStatistics());
initializeStats();
}
public AsyncEventQueueMBeanBridge() {
this.monitor =
new MBeanStatsMonitor("AsyncEventQueueMXBeanMonitor");
}
public void addAsyncEventQueueStats(AsyncEventQueueStats asyncEventQueueStats) {
monitor.addStatisticsToMonitor(asyncEventQueueStats.getStats());
}
public void addOverflowStatistics(Statistics statistics) {
if (statistics != null) {
overflowMonitor.addStatisticsToMonitor(statistics);
}
}
private void initializeStats() {
lruEvictionsRate =
new StatsRate(StatsKey.GATEWAYSENDER_LRU_EVICTIONS, StatType.LONG_TYPE, overflowMonitor);
}
public String getAsyncEventListener() {
return queueImpl.getAsyncEventListener().getClass().getCanonicalName();
}
public int getBatchSize() {
return queueImpl.getBatchSize();
}
public int getBatchTimeInteval() {
return queueImpl.getBatchTimeInterval();
}
public boolean isBatchConflationEnabled() {
return queueImpl.isBatchConflationEnabled();
}
public String getId() {
return queueImpl.getId();
}
public int getMaximumQueueMemory() {
return queueImpl.getMaximumQueueMemory();
}
public String getOverflowDiskStoreName() {
return queueImpl.getDiskStoreName();
}
public boolean isPersistent() {
return queueImpl.isPersistent();
}
public boolean isParallel() {
return queueImpl.isParallel();
}
public boolean isPrimary() {
return queueImpl.isPrimary();
}
public int getDispatcherThreads() {
return queueImpl.getDispatcherThreads();
}
public String getOrderPolicy() {
return queueImpl.getOrderPolicy() != null ? queueImpl.getOrderPolicy().name() : null;
}
public boolean isDiskSynchronous() {
return queueImpl.isDiskSynchronous();
}
public int getEventQueueSize() {
return getStatistic(StatsKey.ASYNCEVENTQUEUE_EVENTS_QUEUE_SIZE).intValue();
}
public float getLRUEvictionsRate() {
return lruEvictionsRate.getRate();
}
public long getEntriesOverflowedToDisk() {
return overflowMonitor.getStatistic(StatsKey.GATEWAYSENDER_ENTRIES_OVERFLOWED_TO_DISK)
.longValue();
}
public long getBytesOverflowedToDisk() {
return overflowMonitor.getStatistic(StatsKey.GATEWAYSENDER_BYTES_OVERFLOWED_TO_DISK)
.longValue();
}
private Number getStatistic(String statName) {
if (monitor != null) {
return monitor.getStatistic(statName);
} else {
return 0;
}
}
public void stopMonitor() {
monitor.stopListener();
}
public boolean isDispatchingPaused() {
return queueImpl.isDispatchingPaused();
}
}