Class: Aws::XRay::Types::ServiceStatistics

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

Overview

Response statistics for a service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_statisticsTypes::ErrorStatistics

Information about requests that failed with a 4xx Client Error status code.



2824
2825
2826
2827
2828
2829
2830
2831
2832
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2824

class ServiceStatistics < Struct.new(
  :ok_count,
  :error_statistics,
  :fault_statistics,
  :total_count,
  :total_response_time)
  SENSITIVE = []
  include Aws::Structure
end

#fault_statisticsTypes::FaultStatistics

Information about requests that failed with a 5xx Server Error status code.



2824
2825
2826
2827
2828
2829
2830
2831
2832
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2824

class ServiceStatistics < Struct.new(
  :ok_count,
  :error_statistics,
  :fault_statistics,
  :total_count,
  :total_response_time)
  SENSITIVE = []
  include Aws::Structure
end

#ok_countInteger

The number of requests that completed with a 2xx Success status code.

Returns:

  • (Integer)


2824
2825
2826
2827
2828
2829
2830
2831
2832
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2824

class ServiceStatistics < Struct.new(
  :ok_count,
  :error_statistics,
  :fault_statistics,
  :total_count,
  :total_response_time)
  SENSITIVE = []
  include Aws::Structure
end

#total_countInteger

The total number of completed requests.

Returns:

  • (Integer)


2824
2825
2826
2827
2828
2829
2830
2831
2832
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2824

class ServiceStatistics < Struct.new(
  :ok_count,
  :error_statistics,
  :fault_statistics,
  :total_count,
  :total_response_time)
  SENSITIVE = []
  include Aws::Structure
end

#total_response_timeFloat

The aggregate response time of completed requests.

Returns:

  • (Float)


2824
2825
2826
2827
2828
2829
2830
2831
2832
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 2824

class ServiceStatistics < Struct.new(
  :ok_count,
  :error_statistics,
  :fault_statistics,
  :total_count,
  :total_response_time)
  SENSITIVE = []
  include Aws::Structure
end