Package org.opensearch.telemetry.metrics
Interface Histogram
- All Known Implementing Classes:
NoopHistogram
@ExperimentalApi
public interface Histogram
Histogram records the value for an existing metric.
-
Method Summary
-
Method Details
-
record
void record(double value) record value.- Parameters:
value- value to be added.
-
record
record value along with the attributes.- Parameters:
value- value to be added.tags- attributes/dimensions of the metric.
-