File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -224,8 +224,21 @@ type HTTPRequests struct {
224
224
// SSL represents SSL related stats.
225
225
type SSL struct {
226
226
Handshakes uint64
227
- HandshakesFailed uint64 `json:"handshakes_failed"`
228
- SessionReuses uint64 `json:"session_reuses"`
227
+ HandshakesFailed uint64 `json:"handshakes_failed"`
228
+ SessionReuses uint64 `json:"session_reuses"`
229
+ NoCommonProtocol uint64 `json:"no_common_protocol"`
230
+ NoCommonCipher uint64 `json:"no_common_cipher"`
231
+ HandshakeTimeout uint64 `json:"handshake_timeout"`
232
+ PeerRejectedCert uint64 `json:"peer_rejected_cert"`
233
+ VerifyFailures VerifyFailures `json:"verify_failures"`
234
+ }
235
+
236
+ type VerifyFailures struct {
237
+ NoCert uint64 `json:"no_cert"`
238
+ ExpiredCert uint64 `json:"expired_cert"`
239
+ RevokedCert uint64 `json:"revoked_cert"`
240
+ HostnameMismatch uint64 `json:"hostname_mismatch"`
241
+ Other uint64 `json:"other"`
229
242
}
230
243
231
244
// ServerZones is map of server zone stats by zone name
You can’t perform that action at this time.
0 commit comments