/* * 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.internal.Utils; import java.util.List; import javax.annotation.concurrent.ThreadSafe; /** * Double Cumulative metric, to report instantaneous 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 1: Create a Cumulative with default labels. * *
{@code
* class YourClass {
*
* private static final MetricRegistry metricRegistry = Metrics.getMetricRegistry();
*
* List labelKeys = Arrays.asList(LabelKey.create("Name", "desc"));
*
* DoubleCumulative cumulative = metricRegistry.addDoubleCumulative("processed_jobs",
* "Processed jobs", "1", labelKeys);
*
* // It is recommended to keep a reference of a point for manual operations.
* DoublePoint defaultPoint = cumulative.getDefaultTimeSeries();
*
* void doWork() {
* // Your code here.
* defaultPoint.add(10);
* }
*
* }
* }
*
* Example 2: You can also use labels(keys and values) to track different types of metric. * *
{@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"));
*
* DoubleCumulative cumulative = metricRegistry.addDoubleCumulative("processed_jobs",
* "Processed jobs", "1", labelKeys);
*
* // It is recommended to keep a reference of a point for manual operations.
* DoublePoint inboundPoint = cumulative.getOrCreateTimeSeries(labelValues);
*
* void doSomeWork() {
* // Your code here.
* inboundPoint.set(15);
* }
*
* }
* }
*
* @since 0.21
*/
@ThreadSafe
public abstract class DoubleCumulative {
/**
* Creates a {@code TimeSeries} and returns a {@code DoublePoint} if the specified {@code
* labelValues} is not already associated with this cumulative, else returns an existing {@code
* DoublePoint}.
*
* It is recommended to keep a reference to the DoublePoint instead of always calling this
* method for manual operations.
*
* @param labelValues the list of label values. The number of label values must be the same to
* that of the label keys passed to {@link MetricRegistry#addDoubleCumulative}.
* @return a {@code DoublePoint} the value of single cumulative.
* @throws NullPointerException if {@code labelValues} is null OR any element of {@code
* labelValues} is null.
* @throws IllegalArgumentException if number of {@code labelValues}s are not equal to the label
* keys.
* @since 0.21
*/
public abstract DoublePoint getOrCreateTimeSeries(List