Class AutoValue_ImmutableDoubleExemplarData
java.lang.Object
io.opentelemetry.sdk.metrics.internal.data.ImmutableDoubleExemplarData
io.opentelemetry.sdk.metrics.internal.data.AutoValue_ImmutableDoubleExemplarData
- All Implemented Interfaces:
DoubleExemplarData
,ExemplarData
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final long
private final Attributes
private final SpanContext
private final double
-
Constructor Summary
ConstructorsConstructorDescriptionAutoValue_ImmutableDoubleExemplarData
(Attributes filteredAttributes, long epochNanos, SpanContext spanContext, double value) -
Method Summary
Modifier and TypeMethodDescriptionboolean
long
Returns the timestamp in nanos when measurement was collected.Returns the attributes that were recorded alongside the original measurement but filtered out by the aggregator.Returns theSpanContext
associated with this exemplar.double
getValue()
Numerical value of the measurement that was recorded.int
hashCode()
toString()
Methods inherited from class io.opentelemetry.sdk.metrics.internal.data.ImmutableDoubleExemplarData
create
-
Field Details
-
filteredAttributes
-
epochNanos
private final long epochNanos -
spanContext
-
value
private final double value
-
-
Constructor Details
-
AutoValue_ImmutableDoubleExemplarData
AutoValue_ImmutableDoubleExemplarData(Attributes filteredAttributes, long epochNanos, SpanContext spanContext, double value)
-
-
Method Details
-
getFilteredAttributes
Description copied from interface:ExemplarData
Returns the attributes that were recorded alongside the original measurement but filtered out by the aggregator. -
getEpochNanos
public long getEpochNanos()Description copied from interface:ExemplarData
Returns the timestamp in nanos when measurement was collected. -
getSpanContext
Description copied from interface:ExemplarData
Returns theSpanContext
associated with this exemplar. If the exemplar was not recorded inside a sampled trace, theSpanContext
will be invalid. -
getValue
public double getValue()Description copied from interface:DoubleExemplarData
Numerical value of the measurement that was recorded. -
toString
-
equals
-
hashCode
public int hashCode()
-