ai.vespa.metrics.Suffix Maven / Gradle / Ivy
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.metrics;
public enum Suffix {
ninety_five_percentile("95percentile"),
ninety_nine_percentile("99percentile"),
average("average"),
count("count"),
last("last"),
max("max"),
min("min"),
rate("rate"),
sum("sum");
private final String suffix;
Suffix(String suffix) {
this.suffix = suffix;
}
public String suffix() {
return suffix;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy