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

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

Overview

Response statistics for a service.

Instance Attribute Summary collapse

Instance Attribute Details

#error_statisticsTypes::ErrorStatistics

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



1879
1880
1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-xray/types.rb', line 1879

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

#fault_statisticsTypes::FaultStatistics

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



1879
1880
1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-xray/types.rb', line 1879

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

#ok_countInteger

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

Returns:

  • (Integer)


1879
1880
1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-xray/types.rb', line 1879

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

#total_countInteger

The total number of completed requests.

Returns:

  • (Integer)


1879
1880
1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-xray/types.rb', line 1879

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

#total_response_timeFloat

The aggregate response time of completed requests.

Returns:

  • (Float)


1879
1880
1881
1882
1883
1884
1885
1886
# File 'lib/aws-sdk-xray/types.rb', line 1879

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