Class: Aws::XRay::Types::ServiceStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::ServiceStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
Response statistics for a service.
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.
3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-xray/types.rb', line 3162 class ServiceStatistics < 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.
3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-xray/types.rb', line 3162 class ServiceStatistics < 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.
3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-xray/types.rb', line 3162 class ServiceStatistics < 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.
3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-xray/types.rb', line 3162 class ServiceStatistics < 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.
3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-xray/types.rb', line 3162 class ServiceStatistics < Struct.new( :ok_count, :error_statistics, :fault_statistics, :total_count, :total_response_time) SENSITIVE = [] include Aws::Structure end |