class Google::Apis::NetworkmanagementV1beta1::LatencyPercentile

Latency percentile rank and value.

Attributes

latency_micros[RW]

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. Corresponds to the JSON property `latencyMicros` @return [Fixnum]

percent[RW]

Percentage of samples this data point applies to. Corresponds to the JSON property `percent` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 886
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/networkmanagement_v1beta1/classes.rb, line 891
def update!(**args)
  @latency_micros = args[:latency_micros] if args.key?(:latency_micros)
  @percent = args[:percent] if args.key?(:percent)
end