Class: Aws::XRay::Types::SamplingStatisticsDocument

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

Overview

Note:

When making an API call, you may pass SamplingStatisticsDocument data as a hash:

{
  rule_name: "RuleName", # required
  client_id: "ClientID", # required
  timestamp: Time.now, # required
  request_count: 1, # required
  sampled_count: 1, # required
  borrow_count: 1,
}

Request sampling results for a single rule from a service. Results are for the last 10 seconds unless the service has been assigned a longer reporting interval after a previous call to GetSamplingTargets.

Instance Attribute Summary collapse

Instance Attribute Details

#borrow_countInteger

The number of requests recorded with borrowed reservoir quota.

Returns:

  • (Integer)


1664
1665
1666
1667
1668
1669
1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1664

class SamplingStatisticsDocument < Struct.new(
  :rule_name,
  :client_id,
  :timestamp,
  :request_count,
  :sampled_count,
  :borrow_count)
  include Aws::Structure
end

#client_idString

A unique identifier for the service in hexadecimal.

Returns:

  • (String)


1664
1665
1666
1667
1668
1669
1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1664

class SamplingStatisticsDocument < Struct.new(
  :rule_name,
  :client_id,
  :timestamp,
  :request_count,
  :sampled_count,
  :borrow_count)
  include Aws::Structure
end

#request_countInteger

The number of requests that matched the rule.

Returns:

  • (Integer)


1664
1665
1666
1667
1668
1669
1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1664

class SamplingStatisticsDocument < Struct.new(
  :rule_name,
  :client_id,
  :timestamp,
  :request_count,
  :sampled_count,
  :borrow_count)
  include Aws::Structure
end

#rule_nameString

The name of the sampling rule.

Returns:

  • (String)


1664
1665
1666
1667
1668
1669
1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1664

class SamplingStatisticsDocument < Struct.new(
  :rule_name,
  :client_id,
  :timestamp,
  :request_count,
  :sampled_count,
  :borrow_count)
  include Aws::Structure
end

#sampled_countInteger

The number of requests recorded.

Returns:

  • (Integer)


1664
1665
1666
1667
1668
1669
1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1664

class SamplingStatisticsDocument < Struct.new(
  :rule_name,
  :client_id,
  :timestamp,
  :request_count,
  :sampled_count,
  :borrow_count)
  include Aws::Structure
end

#timestampTime

The current time.

Returns:

  • (Time)


1664
1665
1666
1667
1668
1669
1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1664

class SamplingStatisticsDocument < Struct.new(
  :rule_name,
  :client_id,
  :timestamp,
  :request_count,
  :sampled_count,
  :borrow_count)
  include Aws::Structure
end