CopyableBuilder<ApplicationMetrics.Builder,ApplicationMetrics>
, SdkBuilder<ApplicationMetrics.Builder,ApplicationMetrics>
public static interface ApplicationMetrics.Builder extends CopyableBuilder<ApplicationMetrics.Builder,ApplicationMetrics>
Modifier and Type | Method | Description |
---|---|---|
ApplicationMetrics.Builder |
duration(Integer duration) |
The amount of time that the metrics cover (usually 10 seconds).
|
ApplicationMetrics.Builder |
latency(Latency latency) |
Represents the average latency for the slowest X percent of requests over the last 10 seconds.
|
ApplicationMetrics.Builder |
requestCount(Integer requestCount) |
Average number of requests handled by the web server per second over the last 10 seconds.
|
ApplicationMetrics.Builder |
statusCodes(StatusCodes statusCodes) |
Represents the percentage of requests over the last 10 seconds that resulted in each type of status code
response.
|
copy
apply, build
ApplicationMetrics.Builder duration(Integer duration)
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
).
duration
- 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
).ApplicationMetrics.Builder requestCount(Integer requestCount)
Average number of requests handled by the web server per second over the last 10 seconds.
requestCount
- Average number of requests handled by the web server per second over the last 10 seconds.ApplicationMetrics.Builder statusCodes(StatusCodes statusCodes)
Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.
statusCodes
- Represents the percentage of requests over the last 10 seconds that resulted in each type of status
code response.ApplicationMetrics.Builder latency(Latency 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.
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.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.