
gobblin.metrics.Counters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gobblin-metrics Show documentation
Show all versions of gobblin-metrics Show documentation
Gobblin Ingestion Framework
The newest version!
/*
* Copyright (C) 2014-2016 LinkedIn Corp. 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.
*/
package gobblin.metrics;
import java.util.Arrays;
import com.codahale.metrics.Counter;
import com.codahale.metrics.MetricRegistry;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableMap.Builder;
/**
* Class that holds {@link Counter}s for each value of an enum. The metric generated with have the name of the enum.
*
* @see Counters#initialize(MetricContext, Class, Class)
* @param
*/
public class Counters> {
private ImmutableMap counters;
/**
* Creates a {@link Counter} for every value of the enumClass.
* Use {@link #inc(Enum, long)} to increment the counter associated with a enum value
*
* @param metricContext that {@link Counter}s will be registered
* @param enumClass that define the names of {@link Counter}s. One counter is created per value
* @param instrumentedClass name that will be prefixed in the metric name
*/
public void initialize(final MetricContext metricContext, final Class enumClass, final Class> instrumentedClass) {
Builder builder = ImmutableMap.builder();
for (E e : Arrays.asList(enumClass.getEnumConstants())) {
builder.put(e, metricContext.counter(MetricRegistry.name(instrumentedClass, e.name())));
}
counters = builder.build();
}
/**
* Increment the counter associated with enum value passed.
*
* @param e Counter to increment.
* @param n the value to increment
*/
public void inc(E e, long n) {
if (counters != null && counters.containsKey(e)) {
counters.get(e).inc(n);
}
}
/**
* Get count for counter associated with enum value passed.
* @param e Counter to query.
* @return the count for this counter.
*/
public long getCount(E e) {
if (counters.containsKey(e)) {
return counters.get(e).getCount();
} else {
return 0l;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy