Package io.opentelemetry.api.metrics
Interface ObservableLongMeasurement
- All Superinterfaces:
ObservableMeasurement
An interface for observing measurements with
long values.- Since:
- 1.10.0
-
Method Summary
Modifier and TypeMethodDescriptionvoidrecord(long value) Records a measurement.voidrecord(long value, Attributes attributes) Records a measurement with a set of attributes.
-
Method Details
-
record
void record(long value) Records a measurement.- Parameters:
value- The measurement value.
-
record
Records a measurement with a set of attributes.- Parameters:
value- The measurement value.attributes- A set of attributes to associate with the value.
-