Interface LatencyPercentileOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    LatencyPercentile, LatencyPercentile.Builder

    public interface LatencyPercentileOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      long getLatencyMicros()
      percent-th percentile of latency observed, in microseconds.
      int getPercent()
      Percentage of samples this data point applies to.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getPercent

        int getPercent()
         Percentage of samples this data point applies to.
         
        int32 percent = 1;
        Returns:
        The percent.
      • getLatencyMicros

        long getLatencyMicros()
         percent-th percentile of latency observed, in microseconds.
         Fraction of percent/100 of samples have latency lower or
         equal to the value of this field.
         
        int64 latency_micros = 2;
        Returns:
        The latencyMicros.