public interface OpenSslSessionMetrics
OpenSslSessionStats| 限定符和类型 | 方法和说明 |
|---|---|
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 |
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.
|
long number()
long accept()
long acceptGood()
long acceptRenegotiate()
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.long cbHits()
long misses()
long timeouts()
hits() count.long cacheFull()
long ticketKeyFail()
long ticketKeyNew()
long ticketKeyRenew()
long ticketKeyResume()
Copyright © 2020. All rights reserved.