All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.micrometer.statsd.StatsdLongTaskTimer Maven / Gradle / Ivy

/**
 * 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.Clock; import io.micrometer.core.instrument.Statistic; import io.micrometer.core.instrument.internal.DefaultLongTaskTimer; import org.reactivestreams.Subscriber; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicReference; public class StatsdLongTaskTimer extends DefaultLongTaskTimer implements StatsdPollable { private final StatsdLineBuilder lineBuilder; private final Subscriber subscriber; private final AtomicReference lastActive = new AtomicReference<>(Long.MIN_VALUE); private final AtomicReference lastDuration = new AtomicReference<>(Double.NEGATIVE_INFINITY); private final boolean alwaysPublish; StatsdLongTaskTimer(Id id, StatsdLineBuilder lineBuilder, Subscriber subscriber, Clock clock, boolean alwaysPublish) { super(id, clock); this.lineBuilder = lineBuilder; this.subscriber = subscriber; this.alwaysPublish = alwaysPublish; } @Override public void poll() { long active = activeTasks(); if (alwaysPublish || lastActive.getAndSet(active) != active) { subscriber.onNext(lineBuilder.gauge(active, Statistic.ACTIVE_TASKS)); } double duration = duration(TimeUnit.MILLISECONDS); if (alwaysPublish || lastDuration.getAndSet(duration) != duration) { subscriber.onNext(lineBuilder.gauge(duration, Statistic.DURATION)); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy