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

org.apache.dubbo.metrics.model.sample.GaugeMetricSample Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.dubbo.metrics.model.sample;

import org.apache.dubbo.common.logger.ErrorTypeAwareLogger;
import org.apache.dubbo.common.logger.LoggerFactory;
import org.apache.dubbo.metrics.model.MetricsCategory;
import org.apache.dubbo.metrics.model.key.MetricsKey;
import org.apache.dubbo.metrics.model.key.MetricsKeyWrapper;

import java.util.Map;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.ToDoubleFunction;

import static org.apache.dubbo.common.constants.LoggerCodeConstants.COMMON_METRICS_COLLECTOR_EXCEPTION;

/**
 * GaugeMetricSample.
 */
public class GaugeMetricSample extends MetricSample {
    private static final ErrorTypeAwareLogger logger = LoggerFactory.getErrorTypeAwareLogger(GaugeMetricSample.class);
    private final AtomicBoolean warned = new AtomicBoolean(false);

    private final T value;

    private final ToDoubleFunction apply;

    public GaugeMetricSample(
            MetricsKey metricsKey,
            Map tags,
            MetricsCategory category,
            T value,
            ToDoubleFunction apply) {
        this(metricsKey.getName(), metricsKey.getDescription(), tags, category, null, value, apply);
    }

    public GaugeMetricSample(
            MetricsKeyWrapper metricsKeyWrapper,
            Map tags,
            MetricsCategory category,
            T value,
            ToDoubleFunction apply) {
        this(metricsKeyWrapper.targetKey(), metricsKeyWrapper.targetDesc(), tags, category, null, value, apply);
    }

    public GaugeMetricSample(
            String name,
            String description,
            Map tags,
            MetricsCategory category,
            T value,
            ToDoubleFunction apply) {
        this(name, description, tags, category, null, value, apply);
    }

    public GaugeMetricSample(
            String name,
            String description,
            Map tags,
            MetricsCategory category,
            String baseUnit,
            T value,
            ToDoubleFunction apply) {
        super(name, description, tags, Type.GAUGE, category, baseUnit);
        this.value = Objects.requireNonNull(value, "The GaugeMetricSample value cannot be null");
        Objects.requireNonNull(apply, "The GaugeMetricSample apply cannot be null");
        this.apply = (e) -> {
            try {
                return apply.applyAsDouble(e);
            } catch (Throwable t) {
                if (warned.compareAndSet(false, true)) {
                    logger.error(
                            COMMON_METRICS_COLLECTOR_EXCEPTION,
                            "",
                            "",
                            "Unexpected error occurred when applying the GaugeMetricSample",
                            t);
                }
                return 0;
            }
        };
    }

    public T getValue() {
        return this.value;
    }

    public ToDoubleFunction getApply() {
        return this.apply;
    }

    public long applyAsLong() {
        return (long) getApply().applyAsDouble(getValue());
    }

    public double applyAsDouble() {
        return getApply().applyAsDouble(getValue());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy