ApplicationMetrics
public struct ApplicationMetrics : AWSShape
                Undocumented
- 
                  
                  
Declaration
Swift
public static var _members: [AWSShapeMember] - 
                  
                  
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).
Declaration
Swift
public let duration: Int? - 
                  
                  
Represents the average latency for the slowest X percent of requests over the last 10 seconds. Latencies are in seconds with one millisecond resolution.
Declaration
Swift
public let latency: Latency? - 
                  
                  
Average number of requests handled by the web server per second over the last 10 seconds.
Declaration
Swift
public let requestCount: Int? - 
                  
                  
Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.
Declaration
Swift
public let statusCodes: StatusCodes? - 
                  
                  
Undocumented
Declaration
Swift
public init(duration: Int? = nil, latency: Latency? = nil, requestCount: Int? = nil, statusCodes: StatusCodes? = nil) 
View on GitHub
        ApplicationMetrics Structure Reference