Newer
Older
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
package acmeserver
import (
"github.com/prometheus/client_golang/prometheus"
)
var (
certExpirationTimes = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "cert_expiration_time",
Help: "Certificate expiration time.",
},
[]string{"cn"},
)
certOk = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "cert_ok",
Help: "Do we have a valid certificate.",
},
[]string{"cn"},
)
certRenewalCount = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "cert_renewal_total",
Help: "Total certificate renewal attempts.",
},
[]string{"cn"},
)
certRenewalErrorCount = prometheus.NewCounterVec(
prometheus.CounterOpts{
Name: "cert_renewal_errors",
Help: "Errors while renewing certificates.",
},
[]string{"cn"},
)
)
func init() {
prometheus.MustRegister(certExpirationTimes, certOk, certRenewalErrorCount)
}
func b2f(b bool) float64 {
if b {
return 1
}
return 0
}