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

io.opencensus.stats.Aggregation Maven / Gradle / Ivy

There is a newer version: 1.15.4
Show newest version
/*
 * Copyright 2017, 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.stats;

import com.google.auto.value.AutoValue;
import io.opencensus.common.Function;
import io.opencensus.internal.Utils;
import javax.annotation.concurrent.Immutable;

/**
 * {@link Aggregation} is the process of combining a certain set of {@code MeasureValue}s for a
 * given {@code Measure} into an {@link AggregationData}.
 *
 * 

{@link Aggregation} currently supports 4 types of basic aggregation: * *

    *
  • Sum *
  • Count *
  • Distribution *
  • LastValue *
* *

When creating a {@link View}, one {@link Aggregation} needs to be specified as how to * aggregate {@code MeasureValue}s. * * @since 0.8 */ @Immutable public abstract class Aggregation { private Aggregation() {} /** * Applies the given match function to the underlying data type. * * @since 0.13 */ public abstract T match( Function p0, Function p1, Function p2, Function p3, Function defaultFunction); /** * Calculate sum on aggregated {@code MeasureValue}s. * * @since 0.8 */ @Immutable @AutoValue public abstract static class Sum extends Aggregation { Sum() {} private static final Sum INSTANCE = new AutoValue_Aggregation_Sum(); /** * Construct a {@code Sum}. * * @return a new {@code Sum}. * @since 0.8 */ public static Sum create() { return INSTANCE; } @Override public final T match( Function p0, Function p1, Function p2, Function p3, Function defaultFunction) { return p0.apply(this); } } /** * Calculate count on aggregated {@code MeasureValue}s. * * @since 0.8 */ @Immutable @AutoValue public abstract static class Count extends Aggregation { Count() {} private static final Count INSTANCE = new AutoValue_Aggregation_Count(); /** * Construct a {@code Count}. * * @return a new {@code Count}. * @since 0.8 */ public static Count create() { return INSTANCE; } @Override public final T match( Function p0, Function p1, Function p2, Function p3, Function defaultFunction) { return p1.apply(this); } } /** * Calculate mean on aggregated {@code MeasureValue}s. * * @since 0.8 * @deprecated since 0.13, use {@link Distribution} instead. */ @Immutable @AutoValue @Deprecated @AutoValue.CopyAnnotations public abstract static class Mean extends Aggregation { Mean() {} private static final Mean INSTANCE = new AutoValue_Aggregation_Mean(); /** * Construct a {@code Mean}. * * @return a new {@code Mean}. * @since 0.8 */ public static Mean create() { return INSTANCE; } @Override public final T match( Function p0, Function p1, Function p2, Function p3, Function defaultFunction) { return defaultFunction.apply(this); } } /** * Calculate distribution stats on aggregated {@code MeasureValue}s. Distribution includes mean, * count, histogram, min, max and sum of squared deviations. * * @since 0.8 */ @Immutable @AutoValue public abstract static class Distribution extends Aggregation { Distribution() {} /** * Construct a {@code Distribution}. * * @return a new {@code Distribution}. * @since 0.8 */ public static Distribution create(BucketBoundaries bucketBoundaries) { Utils.checkNotNull(bucketBoundaries, "bucketBoundaries"); return new AutoValue_Aggregation_Distribution(bucketBoundaries); } /** * Returns the {@code Distribution}'s bucket boundaries. * * @return the {@code Distribution}'s bucket boundaries. * @since 0.8 */ public abstract BucketBoundaries getBucketBoundaries(); @Override public final T match( Function p0, Function p1, Function p2, Function p3, Function defaultFunction) { return p2.apply(this); } } /** * Calculate the last value of aggregated {@code MeasureValue}s. * * @since 0.13 */ @Immutable @AutoValue public abstract static class LastValue extends Aggregation { LastValue() {} private static final LastValue INSTANCE = new AutoValue_Aggregation_LastValue(); /** * Construct a {@code LastValue}. * * @return a new {@code LastValue}. * @since 0.13 */ public static LastValue create() { return INSTANCE; } @Override public final T match( Function p0, Function p1, Function p2, Function p3, Function defaultFunction) { return p3.apply(this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy