Class: Aws::XRay::Types::SamplingStatisticSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::SamplingStatisticSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
Aggregated request sampling data for a sampling rule across all services for a 10-second window.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #borrow_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of requests recorded with borrowed reservoir quota.
 - 
  
    
      #request_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of requests that matched the rule.
 - 
  
    
      #rule_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the sampling rule.
 - 
  
    
      #sampled_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of requests recorded.
 - 
  
    
      #timestamp  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start time of the reporting window.
 
Instance Attribute Details
#borrow_count ⇒ Integer
The number of requests recorded with borrowed reservoir quota.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2870 class SamplingStatisticSummary < Struct.new( :rule_name, :timestamp, :request_count, :borrow_count, :sampled_count) SENSITIVE = [] include Aws::Structure end  | 
  
#request_count ⇒ Integer
The number of requests that matched the rule.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2870 class SamplingStatisticSummary < Struct.new( :rule_name, :timestamp, :request_count, :borrow_count, :sampled_count) SENSITIVE = [] include Aws::Structure end  | 
  
#rule_name ⇒ String
The name of the sampling rule.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2870 class SamplingStatisticSummary < Struct.new( :rule_name, :timestamp, :request_count, :borrow_count, :sampled_count) SENSITIVE = [] include Aws::Structure end  | 
  
#sampled_count ⇒ Integer
The number of requests recorded.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2870 class SamplingStatisticSummary < Struct.new( :rule_name, :timestamp, :request_count, :borrow_count, :sampled_count) SENSITIVE = [] include Aws::Structure end  | 
  
#timestamp ⇒ Time
The start time of the reporting window.
      2870 2871 2872 2873 2874 2875 2876 2877 2878  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 2870 class SamplingStatisticSummary < Struct.new( :rule_name, :timestamp, :request_count, :borrow_count, :sampled_count) SENSITIVE = [] include Aws::Structure end  |