public final class OpenSslSessionStats
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
long |
accept ()
Returns the number of started SSL/TLS handshakes in server mode.
|
long |
acceptGood ()
Returns the number of successfully established SSL/TLS sessions in server mode.
|
long |
acceptRenegotiate ()
Returns the number of start renegotiations in server mode.
|
long |
cacheFull ()
Returns the number of sessions that were removed because the maximum session cache size was exceeded.
|
long |
cbHits ()
Returns the number of successfully retrieved sessions from the external session cache in server mode.
|
long |
connect ()
Returns the number of started SSL/TLS handshakes in client mode.
|
long |
connectGood ()
Returns the number of successfully established SSL/TLS sessions in client mode.
|
long |
connectRenegotiate ()
Returns the number of start renegotiations in client mode.
|
long |
hits ()
Returns the number of successfully reused sessions.
|
long |
misses ()
Returns the number of sessions proposed by clients that were not found in the internal session cache
in server mode.
|
long |
number ()
Returns the current number of sessions in the internal session cache.
|
long |
ticketKeyFail ()
Returns the number of times a client presented a ticket that did not match any key in the list.
|
long |
ticketKeyNew ()
Returns the number of times a client did not present a ticket and we issued a new one
|
long |
ticketKeyRenew ()
Returns the number of times a client presented a ticket derived from an older key,
and we upgraded to the primary key.
|
long |
ticketKeyResume ()
Returns the number of times a client presented a ticket derived from the primary key.
|
long |
timeouts ()
Returns the number of sessions proposed by clients and either found in the internal or external session cache
in server mode, but that were invalid due to timeout.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitpublic long number()
public long connect()
public long connectGood()
public long connectRenegotiate()
public long accept()
public long acceptGood()
public long acceptRenegotiate()
public long hits()
SSL_set_session
successfully reused is counted as a hit. In server mode, a session successfully retrieved from internal or
external cache is counted as a hit.public long cbHits()
public long misses()
public long timeouts()
hits()
count.public long cacheFull()
public long ticketKeyFail()
public long ticketKeyNew()
public long ticketKeyRenew()
public long ticketKeyResume()
Copyright © 2008–2018 The Netty Project. All rights reserved.