/* * Copyright 2010 Outerthought bvba * * 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. */ package org.lilyproject.linkindex; import javax.management.ObjectName; import java.util.EnumMap; import org.apache.hadoop.metrics.MetricsContext; import org.apache.hadoop.metrics.MetricsRecord; import org.apache.hadoop.metrics.MetricsUtil; import org.apache.hadoop.metrics.Updater; import org.apache.hadoop.metrics.util.MetricsBase; import org.apache.hadoop.metrics.util.MetricsRegistry; import org.apache.hadoop.metrics.util.MetricsTimeVaryingRate; import org.lilyproject.util.hbase.metrics.MBeanUtil; import org.lilyproject.util.hbase.metrics.MetricsDynamicMBeanBase; public class LinkIndexMetrics implements Updater { public enum Action{DELETE_LINKS, DELETE_LINKS_VTAG, UPDATE_LINKS, GET_REFERRERS, GET_FIELDED_REFERRERS, GET_ALL_FW_LINKS, GET_FW_LINKS} private final MetricsRegistry registry = new MetricsRegistry(); private final MetricsRecord metricsRecord; private final MetricsContext context; private final EnumMap<Action, MetricsTimeVaryingRate> rates = new EnumMap<Action, MetricsTimeVaryingRate>(Action.class); private final LinkIndexMetricsMXBean mbean; private final String recordName; public LinkIndexMetrics(String recordName) { this.recordName = recordName; for (Action action : Action.values()) { rates.put(action, new MetricsTimeVaryingRate(action.name().toLowerCase(), registry)); } context = MetricsUtil.getContext("linkIndex"); metricsRecord = MetricsUtil.createRecord(context, recordName); context.registerUpdater(this); mbean = new LinkIndexMetricsMXBean(this.registry); } public void shutdown() { context.unregisterUpdater(this); mbean.shutdown(); } @Override public void doUpdates(MetricsContext unused) { synchronized (this) { for (MetricsBase m : registry.getMetricsList()) { m.pushMetric(metricsRecord); } } metricsRecord.update(); } void report(Action action, long duration) { rates.get(action).inc(duration); } public class LinkIndexMetricsMXBean extends MetricsDynamicMBeanBase { private final ObjectName mbeanName; public LinkIndexMetricsMXBean(MetricsRegistry registry) { super(registry, "Lily Link Index"); mbeanName = MBeanUtil.registerMBean("Link Index", recordName, this); } public void shutdown() { if (mbeanName != null) { MBeanUtil.unregisterMBean(mbeanName); } } } }