Class HttpServerStatisticsHandler.Stats
- java.lang.Object
-
- com.linkedin.alpini.netty4.handlers.HttpServerStatisticsHandler.Stats
-
- Enclosing class:
- HttpServerStatisticsHandler
public static final class HttpServerStatisticsHandler.Stats extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description long
_aggregateFlushProcessingTime
aggregate nanos of outbound flush before this handlerlong
_aggregateReadProcessingTime
aggregate nanos of inbound channelRead after this handlerlong
_aggregateWriteProcessingTime
aggregate nanos of outbound write before this handlerio.netty.handler.codec.http.HttpMethod
_method
method of the requestlong
_requestContentReceivedTime
nanos at time when end of request content was receivedlong
_requestContentStartTime
nanos at time when start of request content was receivedlong
_requestHeaderReceivedTime
nanos at time the request was receivedlong
_responseContentFlushTime
nanos at time when flush was called after response content end was writtenlong
_responseContentReadyTime
nanos at time when response content end was writtenlong
_responseContentStartTime
nanos at time when response content start was writtenlong
_responseContentWrittenTime
nanos at time when response was completely written to the OSlong
_responseFirstDataFlushTime
nanos at time when flush was called after response content start was writtenlong
_responseHeaderFlushTime
nanos at time when flush was called after response header was writtenlong
_responseHeaderReadyTime
nanos at time when response header was writtenlong
_responseLastFlushTime
nanos at time when last flush was seen by this request
-
Constructor Summary
Constructors Constructor Description Stats()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
_method
public io.netty.handler.codec.http.HttpMethod _method
method of the request
-
_requestHeaderReceivedTime
public long _requestHeaderReceivedTime
nanos at time the request was received
-
_requestContentStartTime
public long _requestContentStartTime
nanos at time when start of request content was received
-
_requestContentReceivedTime
public long _requestContentReceivedTime
nanos at time when end of request content was received
-
_responseHeaderReadyTime
public long _responseHeaderReadyTime
nanos at time when response header was written
-
_responseContentStartTime
public long _responseContentStartTime
nanos at time when response content start was written
-
_responseContentReadyTime
public long _responseContentReadyTime
nanos at time when response content end was written
-
_responseContentWrittenTime
public long _responseContentWrittenTime
nanos at time when response was completely written to the OS
-
_responseHeaderFlushTime
public long _responseHeaderFlushTime
nanos at time when flush was called after response header was written
-
_responseFirstDataFlushTime
public long _responseFirstDataFlushTime
nanos at time when flush was called after response content start was written
-
_responseContentFlushTime
public long _responseContentFlushTime
nanos at time when flush was called after response content end was written
-
_responseLastFlushTime
public long _responseLastFlushTime
nanos at time when last flush was seen by this request
-
_aggregateReadProcessingTime
public long _aggregateReadProcessingTime
aggregate nanos of inbound channelRead after this handler
-
_aggregateWriteProcessingTime
public long _aggregateWriteProcessingTime
aggregate nanos of outbound write before this handler
-
_aggregateFlushProcessingTime
public long _aggregateFlushProcessingTime
aggregate nanos of outbound flush before this handler
-
-