com.swirlds.common.metrics.platform.PlatformMetricsFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swirlds-common Show documentation
Show all versions of swirlds-common Show documentation
Swirlds is a software platform designed to build fully-distributed applications that harness the power of the cloud without servers. Now you can develop applications with fairness in decision making, speed, trust and reliability, at a fraction of the cost of traditional server-based platforms.
/*
* Copyright (C) 2022-2024 Hedera Hashgraph, LLC
*
* 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 com.swirlds.common.metrics.platform;
import com.swirlds.common.metrics.DurationGauge;
import com.swirlds.common.metrics.FunctionGauge;
import com.swirlds.common.metrics.IntegerPairAccumulator;
import com.swirlds.common.metrics.PlatformMetricsFactory;
import com.swirlds.common.metrics.RunningAverageMetric;
import com.swirlds.common.metrics.SpeedometerMetric;
import com.swirlds.common.metrics.StatEntry;
import com.swirlds.common.metrics.config.MetricsConfig;
import com.swirlds.metrics.api.Counter;
import com.swirlds.metrics.api.DoubleAccumulator;
import com.swirlds.metrics.api.DoubleGauge;
import com.swirlds.metrics.api.IntegerAccumulator;
import com.swirlds.metrics.api.IntegerGauge;
import com.swirlds.metrics.api.LongAccumulator;
import com.swirlds.metrics.api.LongGauge;
import com.swirlds.metrics.api.Metric;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Objects;
/**
* An implementation of {@link PlatformMetricsFactory} that creates platform-internal {@link Metric}-instances
*/
public class PlatformMetricsFactoryImpl implements PlatformMetricsFactory {
private final MetricsConfig metricsConfig;
/**
* Constructs a new PlatformMetricsFactoryImpl with the given configuration.
* @param metricsConfig the configuration for this metrics factory
*/
public PlatformMetricsFactoryImpl(@NonNull final MetricsConfig metricsConfig) {
this.metricsConfig = Objects.requireNonNull(metricsConfig, "metricsConfig is null");
}
/**
* {@inheritDoc}
*/
@Override
public Counter createCounter(final Counter.Config config) {
return new PlatformCounter(config);
}
/**
* {@inheritDoc}
*/
@Override
public DoubleAccumulator createDoubleAccumulator(final DoubleAccumulator.Config config) {
return new PlatformDoubleAccumulator(config);
}
/**
* {@inheritDoc}
*/
@Override
public DoubleGauge createDoubleGauge(final DoubleGauge.Config config) {
return new PlatformDoubleGauge(config);
}
@Override
public DurationGauge createDurationGauge(final DurationGauge.Config config) {
return new PlatformDurationGauge(config);
}
/**
* {@inheritDoc}
*/
@Override
public FunctionGauge createFunctionGauge(final FunctionGauge.Config config) {
return new PlatformFunctionGauge<>(config);
}
/**
* {@inheritDoc}
*/
@Override
public IntegerAccumulator createIntegerAccumulator(final IntegerAccumulator.Config config) {
return new PlatformIntegerAccumulator(config);
}
/**
* {@inheritDoc}
*/
@Override
public IntegerGauge createIntegerGauge(final IntegerGauge.Config config) {
return new PlatformIntegerGauge(config);
}
/**
* {@inheritDoc}
*/
@Override
public IntegerPairAccumulator createIntegerPairAccumulator(final IntegerPairAccumulator.Config config) {
return new PlatformIntegerPairAccumulator<>(config);
}
/**
* {@inheritDoc}
*/
@Override
public LongAccumulator createLongAccumulator(final LongAccumulator.Config config) {
return new PlatformLongAccumulator(config);
}
/**
* {@inheritDoc}
*/
@Override
public LongGauge createLongGauge(final LongGauge.Config config) {
return new PlatformLongGauge(config);
}
/**
* {@inheritDoc}
*/
@Override
public RunningAverageMetric createRunningAverageMetric(final RunningAverageMetric.Config config) {
if (config.isUseDefaultHalfLife()) {
return new PlatformRunningAverageMetric(config.withHalfLife(metricsConfig.halfLife()));
}
return new PlatformRunningAverageMetric(config);
}
/**
* {@inheritDoc}
*/
@Override
public SpeedometerMetric createSpeedometerMetric(final SpeedometerMetric.Config config) {
if (config.isUseDefaultHalfLife()) {
return new PlatformSpeedometerMetric(config.withHalfLife(metricsConfig.halfLife()));
}
return new PlatformSpeedometerMetric(config);
}
/**
* {@inheritDoc}
*/
@SuppressWarnings("removal")
@Override
public StatEntry createStatEntry(final StatEntry.Config> config) {
return new PlatformStatEntry(config);
}
}