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

dev.openfga.sdk.telemetry.Counter Maven / Gradle / Ivy

package dev.openfga.sdk.telemetry;

/**
 * Represents a counter used for telemetry purposes.
 */
public class Counter extends Metric {
    /**
     * Constructs a new Counter with the specified name, unit, and description.
     *
     * @param name        the name of the counter
     * @param description the description of the counter
     */
    public Counter(String name, String description) {
        super(name, description);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy