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

io.github.resilience4j.retry.utils.MetricNames Maven / Gradle / Ivy

Go to download

Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming

There is a newer version: 2.2.0
Show newest version
package io.github.resilience4j.retry.utils;

public class MetricNames {

    public static final String DEFAULT_PREFIX = "resilience4j.retry";
    public static final String DEFAULT_PREFIX_ASYNC = "resilience4j.asyncRetry";
    public static final String SUCCESSFUL_CALLS_WITHOUT_RETRY = "successful_calls_without_retry";
    public static final String SUCCESSFUL_CALLS_WITH_RETRY = "successful_calls_with_retry";
    public static final String FAILED_CALLS_WITHOUT_RETRY = "failed_calls_without_retry";
    public static final String FAILED_CALLS_WITH_RETRY = "failed_calls_with_retry";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy