Interface IApplicationLoadBalancerMetrics.Jsii$Default
- All Superinterfaces:
IApplicationLoadBalancerMetrics
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IApplicationLoadBalancerMetrics.Jsii$Proxy
- Enclosing interface:
IApplicationLoadBalancerMetrics
IApplicationLoadBalancerMetrics
.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.elasticloadbalancingv2.IApplicationLoadBalancerMetrics
IApplicationLoadBalancerMetrics.Jsii$Default, IApplicationLoadBalancerMetrics.Jsii$Proxy
-
Method Summary
Modifier and TypeMethodDescriptiondefault Metric
The total number of concurrent TCP connections active from clients to the load balancer and from the load balancer to targets.default Metric
The number of TLS connections initiated by the client that did not establish a session with the load balancer.default Metric
consumedLCUs
(MetricOptions props) The number of load balancer capacity units (LCU) used by your load balancer.default Metric
custom
(String metricName, MetricOptions props) Return the given named metric for this Application Load Balancer.default Metric
elbAuthError
(MetricOptions props) The number of user authentications that could not be completed.default Metric
elbAuthFailure
(MetricOptions props) The number of user authentications that could not be completed because the IdP denied access to the user or an authorization code was used more than once.default Metric
elbAuthLatency
(MetricOptions props) The time elapsed, in milliseconds, to query the IdP for the ID token and user info.default Metric
elbAuthSuccess
(MetricOptions props) The number of authenticate actions that were successful.default Metric
httpCodeElb
(HttpCodeElb code, MetricOptions props) The number of HTTP 3xx/4xx/5xx codes that originate from the load balancer.default Metric
httpCodeTarget
(HttpCodeTarget code, MetricOptions props) The number of HTTP 2xx/3xx/4xx/5xx response codes generated by all targets in the load balancer.default Metric
The number of fixed-response actions that were successful.default Metric
httpRedirectCount
(MetricOptions props) The number of redirect actions that were successful.default Metric
The number of redirect actions that couldn't be completed because the URL in the response location header is larger than 8K.default Metric
ipv6ProcessedBytes
(MetricOptions props) The total number of bytes processed by the load balancer over IPv6.default Metric
ipv6RequestCount
(MetricOptions props) The number of IPv6 requests received by the load balancer.default Metric
newConnectionCount
(MetricOptions props) The total number of new TCP connections established from clients to the load balancer and from the load balancer to targets.default Metric
processedBytes
(MetricOptions props) The total number of bytes processed by the load balancer over IPv4 and IPv6.default Metric
The number of connections that were rejected because the load balancer had reached its maximum number of connections.default Metric
requestCount
(MetricOptions props) The number of requests processed over IPv4 and IPv6.default Metric
ruleEvaluations
(MetricOptions props) The number of rules processed by the load balancer given a request rate averaged over an hour.default Metric
The number of connections that were not successfully established between the load balancer and target.default Metric
targetResponseTime
(MetricOptions props) The time elapsed, in seconds, after the request leaves the load balancer until a response from the target is received.default Metric
The number of TLS connections initiated by the load balancer that did not establish a session with the target.Methods inherited from interface software.amazon.awscdk.services.elasticloadbalancingv2.IApplicationLoadBalancerMetrics
activeConnectionCount, clientTlsNegotiationErrorCount, consumedLCUs, custom, elbAuthError, elbAuthFailure, elbAuthLatency, elbAuthSuccess, httpCodeElb, httpCodeTarget, httpFixedResponseCount, httpRedirectCount, httpRedirectUrlLimitExceededCount, ipv6ProcessedBytes, ipv6RequestCount, newConnectionCount, processedBytes, rejectedConnectionCount, requestCount, ruleEvaluations, targetConnectionErrorCount, targetResponseTime, targetTLSNegotiationErrorCount
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
activeConnectionCount
The total number of concurrent TCP connections active from clients to the load balancer and from the load balancer to targets.Default: Sum over 5 minutes
- Specified by:
activeConnectionCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
clientTlsNegotiationErrorCount
@Stability(Stable) @NotNull default Metric clientTlsNegotiationErrorCount(@Nullable MetricOptions props) The number of TLS connections initiated by the client that did not establish a session with the load balancer.Possible causes include a mismatch of ciphers or protocols.
Default: Sum over 5 minutes
- Specified by:
clientTlsNegotiationErrorCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
consumedLCUs
The number of load balancer capacity units (LCU) used by your load balancer.Default: Sum over 5 minutes
- Specified by:
consumedLCUs
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
custom
@Stability(Stable) @NotNull default Metric custom(@NotNull String metricName, @Nullable MetricOptions props) Return the given named metric for this Application Load Balancer.Default: Average over 5 minutes
- Specified by:
custom
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
metricName
- This parameter is required.props
-
-
elbAuthError
The number of user authentications that could not be completed.Because an authenticate action was misconfigured, the load balancer couldn't establish a connection with the IdP, or the load balancer couldn't complete the authentication flow due to an internal error.
Default: Sum over 5 minutes
- Specified by:
elbAuthError
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
elbAuthFailure
The number of user authentications that could not be completed because the IdP denied access to the user or an authorization code was used more than once.Default: Sum over 5 minutes
- Specified by:
elbAuthFailure
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
elbAuthLatency
The time elapsed, in milliseconds, to query the IdP for the ID token and user info.If one or more of these operations fail, this is the time to failure.
Default: Average over 5 minutes
- Specified by:
elbAuthLatency
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
elbAuthSuccess
The number of authenticate actions that were successful.This metric is incremented at the end of the authentication workflow, after the load balancer has retrieved the user claims from the IdP.
Default: Sum over 5 minutes
- Specified by:
elbAuthSuccess
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
httpCodeElb
@Stability(Stable) @NotNull default Metric httpCodeElb(@NotNull HttpCodeElb code, @Nullable MetricOptions props) The number of HTTP 3xx/4xx/5xx codes that originate from the load balancer.This does not include any response codes generated by the targets.
Default: Sum over 5 minutes
- Specified by:
httpCodeElb
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
code
- This parameter is required.props
-
-
httpCodeTarget
@Stability(Stable) @NotNull default Metric httpCodeTarget(@NotNull HttpCodeTarget code, @Nullable MetricOptions props) The number of HTTP 2xx/3xx/4xx/5xx response codes generated by all targets in the load balancer.This does not include any response codes generated by the load balancer.
Default: Sum over 5 minutes
- Specified by:
httpCodeTarget
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
code
- This parameter is required.props
-
-
httpFixedResponseCount
The number of fixed-response actions that were successful.Default: Sum over 5 minutes
- Specified by:
httpFixedResponseCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
httpRedirectCount
The number of redirect actions that were successful.Default: Sum over 5 minutes
- Specified by:
httpRedirectCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
httpRedirectUrlLimitExceededCount
@Stability(Stable) @NotNull default Metric httpRedirectUrlLimitExceededCount(@Nullable MetricOptions props) The number of redirect actions that couldn't be completed because the URL in the response location header is larger than 8K.Default: Sum over 5 minutes
- Specified by:
httpRedirectUrlLimitExceededCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
ipv6ProcessedBytes
The total number of bytes processed by the load balancer over IPv6.Default: Sum over 5 minutes
- Specified by:
ipv6ProcessedBytes
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
ipv6RequestCount
The number of IPv6 requests received by the load balancer.Default: Sum over 5 minutes
- Specified by:
ipv6RequestCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
newConnectionCount
The total number of new TCP connections established from clients to the load balancer and from the load balancer to targets.Default: Sum over 5 minutes
- Specified by:
newConnectionCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
processedBytes
The total number of bytes processed by the load balancer over IPv4 and IPv6.Default: Sum over 5 minutes
- Specified by:
processedBytes
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
rejectedConnectionCount
The number of connections that were rejected because the load balancer had reached its maximum number of connections.Default: Sum over 5 minutes
- Specified by:
rejectedConnectionCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
requestCount
The number of requests processed over IPv4 and IPv6.This count includes only the requests with a response generated by a target of the load balancer.
Default: Sum over 5 minutes
- Specified by:
requestCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
ruleEvaluations
The number of rules processed by the load balancer given a request rate averaged over an hour.Default: Sum over 5 minutes
- Specified by:
ruleEvaluations
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
targetConnectionErrorCount
@Stability(Stable) @NotNull default Metric targetConnectionErrorCount(@Nullable MetricOptions props) The number of connections that were not successfully established between the load balancer and target.Default: Sum over 5 minutes
- Specified by:
targetConnectionErrorCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
targetResponseTime
The time elapsed, in seconds, after the request leaves the load balancer until a response from the target is received.Default: Average over 5 minutes
- Specified by:
targetResponseTime
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-
targetTLSNegotiationErrorCount
@Stability(Stable) @NotNull default Metric targetTLSNegotiationErrorCount(@Nullable MetricOptions props) The number of TLS connections initiated by the load balancer that did not establish a session with the target.Possible causes include a mismatch of ciphers or protocols.
Default: Sum over 5 minutes
- Specified by:
targetTLSNegotiationErrorCount
in interfaceIApplicationLoadBalancerMetrics
- Parameters:
props
-
-