Class: Aws::XRay::Types::EdgeStatistics
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::EdgeStatistics
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
Response statistics for an edge.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #error_statistics  ⇒ Types::ErrorStatistics 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about requests that failed with a 4xx Client Error status code.
 - 
  
    
      #fault_statistics  ⇒ Types::FaultStatistics 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about requests that failed with a 5xx Server Error status code.
 - 
  
    
      #ok_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of requests that completed with a 2xx Success status code.
 - 
  
    
      #total_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total number of completed requests.
 - 
  
    
      #total_response_time  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The aggregate response time of completed requests.
 
Instance Attribute Details
#error_statistics ⇒ Types::ErrorStatistics
Information about requests that failed with a 4xx Client Error status code.
      459 460 461 462 463 464 465 466 467  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 459 class EdgeStatistics < Struct.new( :ok_count, :error_statistics, :fault_statistics, :total_count, :total_response_time) SENSITIVE = [] include Aws::Structure end  | 
  
#fault_statistics ⇒ Types::FaultStatistics
Information about requests that failed with a 5xx Server Error status code.
      459 460 461 462 463 464 465 466 467  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 459 class EdgeStatistics < Struct.new( :ok_count, :error_statistics, :fault_statistics, :total_count, :total_response_time) SENSITIVE = [] include Aws::Structure end  | 
  
#ok_count ⇒ Integer
The number of requests that completed with a 2xx Success status code.
      459 460 461 462 463 464 465 466 467  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 459 class EdgeStatistics < Struct.new( :ok_count, :error_statistics, :fault_statistics, :total_count, :total_response_time) SENSITIVE = [] include Aws::Structure end  | 
  
#total_count ⇒ Integer
The total number of completed requests.
      459 460 461 462 463 464 465 466 467  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 459 class EdgeStatistics < Struct.new( :ok_count, :error_statistics, :fault_statistics, :total_count, :total_response_time) SENSITIVE = [] include Aws::Structure end  | 
  
#total_response_time ⇒ Float
The aggregate response time of completed requests.
      459 460 461 462 463 464 465 466 467  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 459 class EdgeStatistics < Struct.new( :ok_count, :error_statistics, :fault_statistics, :total_count, :total_response_time) SENSITIVE = [] include Aws::Structure end  |