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

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

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

public enum Format {
    COLLAPSED ("collapsed"),
    JFR ("jfr");

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy