forked from adamlaska/boulder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.go
More file actions
62 lines (55 loc) · 1.82 KB
/
stats.go
File metadata and controls
62 lines (55 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package wfe2
import (
"github.com/prometheus/client_golang/prometheus"
)
type wfe2Stats struct {
// httpErrorCount counts client errors at the HTTP level
// e.g. failure to provide a Content-Length header, no POST body, etc
httpErrorCount *prometheus.CounterVec
// joseErrorCount counts client errors at the JOSE level
// e.g. bad JWS, broken JWS signature, invalid JWK, etc
joseErrorCount *prometheus.CounterVec
// csrSignatureAlgs counts the signature algorithms in use for order
// finalization CSRs
csrSignatureAlgs *prometheus.CounterVec
// improperECFieldLengths counts the number of ACME account EC JWKs we see
// with improper X and Y lengths for their curve
improperECFieldLengths prometheus.Counter
}
func initStats(stats prometheus.Registerer) wfe2Stats {
httpErrorCount := prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "http_errors",
Help: "client request errors at the HTTP level",
},
[]string{"type"})
stats.MustRegister(httpErrorCount)
joseErrorCount := prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "jose_errors",
Help: "client request errors at the JOSE level",
},
[]string{"type"})
stats.MustRegister(joseErrorCount)
csrSignatureAlgs := prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "csr_signature_algs",
Help: "Number of CSR signatures by algorithm",
},
[]string{"type"},
)
stats.MustRegister(csrSignatureAlgs)
improperECFieldLengths := prometheus.NewCounter(
prometheus.CounterOpts{
Name: "improper_ec_field_lengths",
Help: "Number of account EC keys with improper X and Y lengths",
},
)
stats.MustRegister(improperECFieldLengths)
return wfe2Stats{
httpErrorCount: httpErrorCount,
joseErrorCount: joseErrorCount,
csrSignatureAlgs: csrSignatureAlgs,
improperECFieldLengths: improperECFieldLengths,
}
}