io.micrometer.statsd.StatsdDistributionSummary Maven / Gradle / Ivy
Show all versions of micrometer-registry-statsd Show documentation
/**
* Copyright 2017 VMware, Inc.
*
* 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
*
* https://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 io.micrometer.statsd;
import io.micrometer.core.instrument.AbstractDistributionSummary;
import io.micrometer.core.instrument.Clock;
import io.micrometer.core.instrument.Meter;
import io.micrometer.core.instrument.distribution.DistributionStatisticConfig;
import io.micrometer.core.instrument.distribution.TimeWindowMax;
import io.micrometer.core.instrument.util.MeterEquivalence;
import io.micrometer.core.lang.Nullable;
import org.reactivestreams.Subscriber;
import java.util.concurrent.atomic.DoubleAdder;
import java.util.concurrent.atomic.LongAdder;
public class StatsdDistributionSummary extends AbstractDistributionSummary {
private final LongAdder count = new LongAdder();
private final DoubleAdder amount = new DoubleAdder();
private final TimeWindowMax max;
private final StatsdLineBuilder lineBuilder;
private final Subscriber subscriber;
private volatile boolean shutdown = false;
StatsdDistributionSummary(Meter.Id id, StatsdLineBuilder lineBuilder, Subscriber subscriber, Clock clock,
DistributionStatisticConfig distributionStatisticConfig, double scale) {
super(id, clock, distributionStatisticConfig, scale, false);
this.max = new TimeWindowMax(clock, distributionStatisticConfig);
this.lineBuilder = lineBuilder;
this.subscriber = subscriber;
}
@Override
protected void recordNonNegative(double amount) {
if (!shutdown && amount >= 0) {
count.increment();
this.amount.add(amount);
max.record(amount);
subscriber.onNext(lineBuilder.histogram(amount));
}
}
@Override
public long count() {
return count.longValue();
}
@Override
public double totalAmount() {
return amount.doubleValue();
}
/**
* The StatsD agent will likely compute max with a different window, so the value may not match what you see here.
* This value is not exported to the agent, and is only for diagnostic use.
*/
@Override
public double max() {
return max.poll();
}
@SuppressWarnings("EqualsWhichDoesntCheckParameterClass")
@Override
public boolean equals(@Nullable Object o) {
return MeterEquivalence.equals(this, o);
}
@Override
public int hashCode() {
return MeterEquivalence.hashCode(this);
}
void shutdown() {
this.shutdown = true;
}
}