Class AutoValue_ImmutableSummaryPointData

    • Field Detail

      • startEpochNanos

        private final long startEpochNanos
      • epochNanos

        private final long epochNanos
      • exemplars

        private final java.util.List<? extends ExemplarData> exemplars
      • count

        private final long count
      • sum

        private final double sum
    • Constructor Detail

      • AutoValue_ImmutableSummaryPointData

        AutoValue_ImmutableSummaryPointData​(long startEpochNanos,
                                            long epochNanos,
                                            Attributes attributes,
                                            java.util.List<? extends ExemplarData> exemplars,
                                            long count,
                                            double sum,
                                            java.util.List<ValueAtQuantile> values)
    • Method Detail

      • getStartEpochNanos

        public long getStartEpochNanos()
        Description copied from interface: PointData
        Returns the start time of the aggregation in epoch nanos.
      • getEpochNanos

        public long getEpochNanos()
        Description copied from interface: PointData
        Returns the end time of the aggregation in epoch nanos.
      • getAttributes

        public Attributes getAttributes()
        Description copied from interface: PointData
        Returns the attributes of the aggregation.
      • getExemplars

        public java.util.List<? extends ExemplarData> getExemplars()
        Description copied from interface: PointData
        List of exemplars collected from measurements aggregated into this point.
      • getCount

        public long getCount()
        Description copied from interface: SummaryPointData
        Returns the count of measurements.
      • getSum

        public double getSum()
        Description copied from interface: SummaryPointData
        Returns the sum of measurements.
      • getValues

        public java.util.List<ValueAtQuantile> getValues()
        Description copied from interface: SummaryPointData
        Returns the list of values at different quantiles in the distribution of measurements.

        Note: a quantile 0.0 represents the minimum value in the distribution; a quantile 1.0 represents the maximum value in the distribution.

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object