Package io.opencensus.trace.export
Class AutoValue_SampledSpanStore_LatencyFilter
- java.lang.Object
-
- io.opencensus.trace.export.SampledSpanStore.LatencyFilter
-
- io.opencensus.trace.export.AutoValue_SampledSpanStore_LatencyFilter
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_SampledSpanStore_LatencyFilter extends SampledSpanStore.LatencyFilter
-
-
Field Summary
Fields Modifier and Type Field Description private long
latencyLowerNs
private long
latencyUpperNs
private int
maxSpansToReturn
private java.lang.String
spanName
-
Constructor Summary
Constructors Constructor Description AutoValue_SampledSpanStore_LatencyFilter(java.lang.String spanName, long latencyLowerNs, long latencyUpperNs, int maxSpansToReturn)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
long
getLatencyLowerNs()
Returns the latency lower bound of this bucket (inclusive).long
getLatencyUpperNs()
Returns the latency upper bound of this bucket (exclusive).int
getMaxSpansToReturn()
Returns the maximum number of spans to be returned.java.lang.String
getSpanName()
Returns the span name used by this filter.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opencensus.trace.export.SampledSpanStore.LatencyFilter
create
-
-
-
-
Method Detail
-
getSpanName
public java.lang.String getSpanName()
Description copied from class:SampledSpanStore.LatencyFilter
Returns the span name used by this filter.- Specified by:
getSpanName
in classSampledSpanStore.LatencyFilter
- Returns:
- the span name used by this filter.
-
getLatencyLowerNs
public long getLatencyLowerNs()
Description copied from class:SampledSpanStore.LatencyFilter
Returns the latency lower bound of this bucket (inclusive).- Specified by:
getLatencyLowerNs
in classSampledSpanStore.LatencyFilter
- Returns:
- the latency lower bound of this bucket.
-
getLatencyUpperNs
public long getLatencyUpperNs()
Description copied from class:SampledSpanStore.LatencyFilter
Returns the latency upper bound of this bucket (exclusive).- Specified by:
getLatencyUpperNs
in classSampledSpanStore.LatencyFilter
- Returns:
- the latency upper bound of this bucket.
-
getMaxSpansToReturn
public int getMaxSpansToReturn()
Description copied from class:SampledSpanStore.LatencyFilter
Returns the maximum number of spans to be returned.0
means all.- Specified by:
getMaxSpansToReturn
in classSampledSpanStore.LatencyFilter
- Returns:
- the maximum number of spans to be returned.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-