Package software.amazon.awssdk.http
Class Http2Metric
- java.lang.Object
-
- software.amazon.awssdk.http.Http2Metric
-
public final class Http2Metric extends Object
Metrics collected by HTTP clients for HTTP/2 operations. SeeHttpMetric
for metrics that are available on both HTTP/1 and HTTP/2 operations.
-
-
Field Summary
Fields Modifier and Type Field Description static SdkMetric<Integer>
LOCAL_STREAM_WINDOW_SIZE_IN_BYTES
The local HTTP/2 window size in bytes for the stream that this request was executed on.static SdkMetric<Integer>
REMOTE_STREAM_WINDOW_SIZE_IN_BYTES
The remote HTTP/2 window size in bytes for the stream that this request was executed on.
-
-
-
Field Detail
-
LOCAL_STREAM_WINDOW_SIZE_IN_BYTES
public static final SdkMetric<Integer> LOCAL_STREAM_WINDOW_SIZE_IN_BYTES
The local HTTP/2 window size in bytes for the stream that this request was executed on.See https://http2.github.io/http2-spec/#FlowControl for more information on HTTP/2 window sizes.
-
-