/*
 * Copyright 2012-2020 the original author or 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
 *
 *      https://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.springframework.boot.actuate.metrics;

import java.util.function.Supplier;

import io.micrometer.core.annotation.Timed;
import io.micrometer.core.instrument.Timer;
import io.micrometer.core.instrument.Timer.Builder;

Strategy that can be used to apply Timers automatically instead of using @Timed.
Author:Tadaya Tsuyukubo, Stephane Nicoll, Phillip Webb
Since:2.2.0
/** * Strategy that can be used to apply {@link Timer Timers} automatically instead of using * {@link Timed @Timed}. * * @author Tadaya Tsuyukubo * @author Stephane Nicoll * @author Phillip Webb * @since 2.2.0 */
@FunctionalInterface public interface AutoTimer {
An AutoTimer implementation that is enabled but applies no additional customizations.
/** * An {@link AutoTimer} implementation that is enabled but applies no additional * customizations. */
AutoTimer ENABLED = (builder) -> { };
An AutoTimer implementation that is disabled and will not record metrics.
/** * An {@link AutoTimer} implementation that is disabled and will not record metrics. */
AutoTimer DISABLED = new AutoTimer() { @Override public boolean isEnabled() { return false; } @Override public void apply(Builder builder) { throw new IllegalStateException("AutoTimer is disabled"); } };
Return if the auto-timer is enabled and metrics should be recorded.
Returns:if the auto-timer is enabled
/** * Return if the auto-timer is enabled and metrics should be recorded. * @return if the auto-timer is enabled */
default boolean isEnabled() { return true; }
Factory method to create a new Timer.Builder with auto-timer settings applied.
Params:
  • name – the name of the timer
Returns:a new builder instance with auto-settings applied
/** * Factory method to create a new {@link Builder Timer.Builder} with auto-timer * settings {@link #apply(Timer.Builder) applied}. * @param name the name of the timer * @return a new builder instance with auto-settings applied */
default Timer.Builder builder(String name) { return builder(() -> Timer.builder(name)); }
Factory method to create a new Timer.Builder with auto-timer settings applied.
Params:
  • supplier – the builder supplier
Returns:a new builder instance with auto-settings applied
/** * Factory method to create a new {@link Builder Timer.Builder} with auto-timer * settings {@link #apply(Timer.Builder) applied}. * @param supplier the builder supplier * @return a new builder instance with auto-settings applied */
default Timer.Builder builder(Supplier<Timer.Builder> supplier) { Timer.Builder builder = supplier.get(); apply(builder); return builder; }
Called to apply any auto-timer settings to the given Timer.Builder.
Params:
  • builder – the builder to apply settings to
/** * Called to apply any auto-timer settings to the given {@link Builder Timer.Builder}. * @param builder the builder to apply settings to */
void apply(Timer.Builder builder); }