org.apache.rocketmq.common.statistics.StatisticsManager Maven / Gradle / Ivy
The newest version!
/*
* 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.rocketmq.common.statistics;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
import org.apache.commons.lang3.tuple.Pair;
import org.apache.rocketmq.common.utils.ThreadUtils;
public class StatisticsManager {
/**
* Set of Statistics Kind Metadata
*/
private Map kindMetaMap;
/**
* item names to calculate statistics brief
*/
private Pair[] briefMetas;
/**
* Statistics
*/
private final ConcurrentHashMap> statsTable
= new ConcurrentHashMap<>();
private static final int MAX_IDLE_TIME = 10 * 60 * 1000;
private final ScheduledExecutorService executor = ThreadUtils.newSingleThreadScheduledExecutor(
"StatisticsManagerCleaner", true);
private StatisticsItemStateGetter statisticsItemStateGetter;
public StatisticsManager() {
kindMetaMap = new HashMap<>();
start();
}
public StatisticsManager(Map kindMeta) {
this.kindMetaMap = kindMeta;
start();
}
public void addStatisticsKindMeta(StatisticsKindMeta kindMeta) {
kindMetaMap.put(kindMeta.getName(), kindMeta);
statsTable.putIfAbsent(kindMeta.getName(), new ConcurrentHashMap<>(16));
}
public void setBriefMeta(Pair[] briefMetas) {
this.briefMetas = briefMetas;
}
private void start() {
int maxIdleTime = MAX_IDLE_TIME;
executor.scheduleAtFixedRate(new Runnable() {
@Override
public void run() {
Iterator>> iter
= statsTable.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry> entry = iter.next();
String kind = entry.getKey();
ConcurrentHashMap itemMap = entry.getValue();
if (itemMap == null || itemMap.isEmpty()) {
continue;
}
HashMap tmpItemMap = new HashMap<>(itemMap);
for (StatisticsItem item : tmpItemMap.values()) {
// remove when expired
if (System.currentTimeMillis() - item.getLastTimeStamp().get() > MAX_IDLE_TIME
&& (statisticsItemStateGetter == null || !statisticsItemStateGetter.online(item))) {
remove(item);
}
}
}
}
}, maxIdleTime, maxIdleTime / 3, TimeUnit.MILLISECONDS);
}
/**
* Increment a StatisticsItem
*
* @param kind
* @param key
* @param itemAccumulates
*/
public boolean inc(String kind, String key, long... itemAccumulates) {
ConcurrentHashMap itemMap = statsTable.get(kind);
if (itemMap != null) {
StatisticsItem item = itemMap.get(key);
// if not exist, create and schedule
if (item == null) {
item = new StatisticsItem(kind, key, kindMetaMap.get(kind).getItemNames());
item.setInterceptor(new StatisticsBriefInterceptor(item, briefMetas));
StatisticsItem oldItem = itemMap.putIfAbsent(key, item);
if (oldItem != null) {
item = oldItem;
} else {
scheduleStatisticsItem(item);
}
}
// do increment
item.incItems(itemAccumulates);
return true;
}
return false;
}
private void scheduleStatisticsItem(StatisticsItem item) {
kindMetaMap.get(item.getStatKind()).getScheduledPrinter().schedule(item);
}
public void remove(StatisticsItem item) {
ConcurrentHashMap itemMap = statsTable.get(item.getStatKind());
if (itemMap != null) {
itemMap.remove(item.getStatObject(), item);
}
StatisticsKindMeta kindMeta = kindMetaMap.get(item.getStatKind());
if (kindMeta != null && kindMeta.getScheduledPrinter() != null) {
kindMeta.getScheduledPrinter().remove(item);
}
}
public StatisticsItemStateGetter getStatisticsItemStateGetter() {
return statisticsItemStateGetter;
}
public void setStatisticsItemStateGetter(StatisticsItemStateGetter statisticsItemStateGetter) {
this.statisticsItemStateGetter = statisticsItemStateGetter;
}
}