Class: Aws::XRay::Types::SamplingBoost

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

Temporary boost sampling rate. X-Ray calculates sampling boost for each service based on the recent sampling boost stats of all services that called [GetSamplingTargets].

[1]: docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#boost_rateFloat

The calculated sampling boost rate for this service

Returns:

  • (Float)


2689
2690
2691
2692
2693
2694
# File 'lib/aws-sdk-xray/types.rb', line 2689

class SamplingBoost < Struct.new(
  :boost_rate,
  :boost_rate_ttl)
  SENSITIVE = []
  include Aws::Structure
end

#boost_rate_ttlTime

When the sampling boost expires.

Returns:

  • (Time)


2689
2690
2691
2692
2693
2694
# File 'lib/aws-sdk-xray/types.rb', line 2689

class SamplingBoost < Struct.new(
  :boost_rate,
  :boost_rate_ttl)
  SENSITIVE = []
  include Aws::Structure
end