com.netflix.spectator.servo.ServoCounter Maven / Gradle / Ivy
/*
* Copyright 2014-2019 Netflix, 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
*
* 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 com.netflix.spectator.servo;
import com.netflix.servo.monitor.Monitor;
import com.netflix.spectator.api.Clock;
import com.netflix.spectator.api.Counter;
import com.netflix.spectator.api.Id;
import com.netflix.spectator.api.Measurement;
import com.netflix.spectator.impl.AtomicDouble;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.atomic.AtomicLong;
/** Counter implementation for the servo registry. */
class ServoCounter implements Counter, ServoMeter {
private final Id id;
private final Clock clock;
private final DoubleCounter impl;
private final AtomicDouble count;
private final AtomicLong lastUpdated;
/** Create a new instance. */
ServoCounter(Id id, Clock clock, DoubleCounter impl) {
this.id = id;
this.clock = clock;
this.impl = impl;
this.count = new AtomicDouble(0.0);
this.lastUpdated = new AtomicLong(clock.wallTime());
}
@Override public void addMonitors(List> monitors) {
monitors.add(impl);
}
@Override public Id id() {
return id;
}
@Override public boolean hasExpired() {
long now = clock.wallTime();
return now - lastUpdated.get() > ServoRegistry.EXPIRATION_TIME_MILLIS;
}
@Override public Iterable measure() {
long now = clock.wallTime();
double v = impl.getValue(0).doubleValue();
return Collections.singleton(new Measurement(id(), now, v));
}
@Override public void add(double amount) {
if (Double.isFinite(amount) && amount > 0.0) {
impl.increment(amount);
count.addAndGet(amount);
lastUpdated.set(clock.wallTime());
}
}
@Override public double actualCount() {
return count.get();
}
}