Class: Aws::ElasticBeanstalk::Types::ApplicationMetrics
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ApplicationMetrics
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Application request metrics for an AWS Elastic Beanstalk environment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration ⇒ Integer
The amount of time that the metrics cover (usually 10 seconds).
-
#latency ⇒ Types::Latency
Represents the average latency for the slowest X percent of requests over the last 10 seconds.
-
#request_count ⇒ Integer
Average number of requests handled by the web server per second over the last 10 seconds.
-
#status_codes ⇒ Types::StatusCodes
Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.
Instance Attribute Details
#duration ⇒ Integer
The amount of time that the metrics cover (usually 10 seconds). For
example, you might have 5 requests (request_count
) within the most
recent time slice of 10 seconds (duration
).
136 137 138 139 140 141 142 143 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 136 class ApplicationMetrics < Struct.new( :duration, :request_count, :status_codes, :latency) SENSITIVE = [] include Aws::Structure end |
#latency ⇒ Types::Latency
Represents the average latency for the slowest X percent of requests over the last 10 seconds. Latencies are in seconds with one millisecond resolution.
136 137 138 139 140 141 142 143 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 136 class ApplicationMetrics < Struct.new( :duration, :request_count, :status_codes, :latency) SENSITIVE = [] include Aws::Structure end |
#request_count ⇒ Integer
Average number of requests handled by the web server per second over the last 10 seconds.
136 137 138 139 140 141 142 143 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 136 class ApplicationMetrics < Struct.new( :duration, :request_count, :status_codes, :latency) SENSITIVE = [] include Aws::Structure end |
#status_codes ⇒ Types::StatusCodes
Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.
136 137 138 139 140 141 142 143 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 136 class ApplicationMetrics < Struct.new( :duration, :request_count, :status_codes, :latency) SENSITIVE = [] include Aws::Structure end |