io.pyroscope.http.Units Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agent Show documentation
Show all versions of agent Show documentation
The Java profiling agent for Pyroscope.io. Based on async-profiler.
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;
}
}