Package io.opencensus.trace.export
Class AutoValue_SampledSpanStore_PerSpanNameSummary
- java.lang.Object
-
- io.opencensus.trace.export.SampledSpanStore.PerSpanNameSummary
-
- io.opencensus.trace.export.AutoValue_SampledSpanStore_PerSpanNameSummary
-
@Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_SampledSpanStore_PerSpanNameSummary extends SampledSpanStore.PerSpanNameSummary
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<Status.CanonicalCode,java.lang.Integer>
numbersOfErrorSampledSpans
private java.util.Map<SampledSpanStore.LatencyBucketBoundaries,java.lang.Integer>
numbersOfLatencySampledSpans
-
Constructor Summary
Constructors Constructor Description AutoValue_SampledSpanStore_PerSpanNameSummary(java.util.Map<SampledSpanStore.LatencyBucketBoundaries,java.lang.Integer> numbersOfLatencySampledSpans, java.util.Map<Status.CanonicalCode,java.lang.Integer> numbersOfErrorSampledSpans)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.util.Map<Status.CanonicalCode,java.lang.Integer>
getNumbersOfErrorSampledSpans()
Returns the number of sampled spans in all the error buckets.java.util.Map<SampledSpanStore.LatencyBucketBoundaries,java.lang.Integer>
getNumbersOfLatencySampledSpans()
Returns the number of sampled spans in all the latency buckets.int
hashCode()
java.lang.String
toString()
-
Methods inherited from class io.opencensus.trace.export.SampledSpanStore.PerSpanNameSummary
create
-
-
-
-
Field Detail
-
numbersOfLatencySampledSpans
private final java.util.Map<SampledSpanStore.LatencyBucketBoundaries,java.lang.Integer> numbersOfLatencySampledSpans
-
numbersOfErrorSampledSpans
private final java.util.Map<Status.CanonicalCode,java.lang.Integer> numbersOfErrorSampledSpans
-
-
Constructor Detail
-
AutoValue_SampledSpanStore_PerSpanNameSummary
AutoValue_SampledSpanStore_PerSpanNameSummary(java.util.Map<SampledSpanStore.LatencyBucketBoundaries,java.lang.Integer> numbersOfLatencySampledSpans, java.util.Map<Status.CanonicalCode,java.lang.Integer> numbersOfErrorSampledSpans)
-
-
Method Detail
-
getNumbersOfLatencySampledSpans
public java.util.Map<SampledSpanStore.LatencyBucketBoundaries,java.lang.Integer> getNumbersOfLatencySampledSpans()
Description copied from class:SampledSpanStore.PerSpanNameSummary
Returns the number of sampled spans in all the latency buckets.Data available only for span names registered using
SampledSpanStore.registerSpanNamesForCollection(Collection)
.- Specified by:
getNumbersOfLatencySampledSpans
in classSampledSpanStore.PerSpanNameSummary
- Returns:
- the number of sampled spans in all the latency buckets.
-
getNumbersOfErrorSampledSpans
public java.util.Map<Status.CanonicalCode,java.lang.Integer> getNumbersOfErrorSampledSpans()
Description copied from class:SampledSpanStore.PerSpanNameSummary
Returns the number of sampled spans in all the error buckets.Data available only for span names registered using
SampledSpanStore.registerSpanNamesForCollection(Collection)
.- Specified by:
getNumbersOfErrorSampledSpans
in classSampledSpanStore.PerSpanNameSummary
- Returns:
- the number of sampled spans in all the error buckets.
-
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
-
-