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

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

Overview

Response statistics for an edge.

Instance Attribute Summary collapse

Instance Attribute Details

#error_statisticsTypes::ErrorStatistics

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



372
373
374
375
376
377
378
379
# File 'lib/aws-sdk-xray/types.rb', line 372

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



372
373
374
375
376
377
378
379
# File 'lib/aws-sdk-xray/types.rb', line 372

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


372
373
374
375
376
377
378
379
# File 'lib/aws-sdk-xray/types.rb', line 372

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


372
373
374
375
376
377
378
379
# File 'lib/aws-sdk-xray/types.rb', line 372

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


372
373
374
375
376
377
378
379
# File 'lib/aws-sdk-xray/types.rb', line 372

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