blob: fc76e45ce164a77cd68066f36affcd2a21835a41 [file] [log] [blame]
package org.apache.ignite.internal.metrics;
import org.jetbrains.annotations.Nullable;
public interface Metric {
/**
* @return Name of the metric.
*/
String name();
/**
* @return Description of the metric.
*/
String description();
/**
* @return String representation of metric value.
*/
@Nullable
String getAsString();
}