Class: Aws::XRay::Types::EdgeStatistics

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

Overview

Response statistics for an edge.

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.



443
444
445
446
447
448
449
450
451
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 443

class EdgeStatistics < 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.



443
444
445
446
447
448
449
450
451
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 443

class EdgeStatistics < 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)


443
444
445
446
447
448
449
450
451
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 443

class EdgeStatistics < 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)


443
444
445
446
447
448
449
450
451
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 443

class EdgeStatistics < 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)


443
444
445
446
447
448
449
450
451
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 443

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