/* * Copyright 2019, OpenCensus Authors * * 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 io.opencensus.metrics; import io.opencensus.common.ToDoubleFunction; import io.opencensus.internal.Utils; import java.lang.ref.WeakReference; import java.util.List; import javax.annotation.concurrent.ThreadSafe; /*>>> import org.checkerframework.checker.nullness.qual.Nullable; */ /** * Derived Double Cumulative metric, to report cumulative measurement of a double value. Cumulative * values can go up or stay the same, but can never go down. Cumulative values cannot be negative. * *
Example: Create a Cumulative with an object and a callback function. * *
{@code
* class YourClass {
*
* private static final MetricRegistry metricRegistry = Metrics.getMetricRegistry();
*
* List labelKeys = Arrays.asList(LabelKey.create("Name", "desc"));
* List labelValues = Arrays.asList(LabelValue.create("Inbound"));
*
* DerivedDoubleCumulative cumulative = metricRegistry.addDerivedDoubleCumulative(
* "processed_jobs", "Processed jobs in a queue", "1", labelKeys);
*
* QueueManager queueManager = new QueueManager();
* cumulative.createTimeSeries(labelValues, queueManager,
* new ToDoubleFunction() {
* {@literal @}Override
* public double applyAsDouble(QueueManager queue) {
* return queue.size();
* }
* });
*
* void doWork() {
* // Your code here.
* }
* }
*
* }
*
* @since 0.21
*/
@ThreadSafe
public abstract class DerivedDoubleCumulative {
/**
* Creates a {@code TimeSeries}. The value of a single point in the TimeSeries is observed from a
* callback function. This function is invoked whenever metrics are collected, meaning the
* reported value is up-to-date. It keeps a {@link WeakReference} to the object and it is the
* user's responsibility to manage the lifetime of the object.
*
* @param labelValues the list of label values.
* @param obj the state object from which the function derives a measurement.
* @param function the function to be called.
* @param