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

io.pyroscope.http.Units Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package io.pyroscope.http;

public enum Units {
    SAMPLES ("samples"),
    OBJECTS ("objects"),
    BYTES ("bytes");

    /**
    * Pyroscope units id, as expected by Pyroscope's HTTP API.
    */
    public final String id;

    Units(String id) {
        this.id = id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy