-
Notifications
You must be signed in to change notification settings - Fork 15
/
metrics.go
75 lines (65 loc) · 1.76 KB
/
metrics.go
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
63
64
65
66
67
68
69
70
71
72
73
74
75
package metrics
import (
"github.com/prometheus/client_golang/prometheus"
)
const (
namespace = "cke"
)
var leader = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "leader",
Help: "1 if this server is the leader of CKE.",
},
)
var operationPhase = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "operation_phase",
Help: "The phase where CKE is currently operating.",
},
[]string{"phase"},
)
var operationPhaseTimestampSeconds = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "operation_phase_timestamp_seconds",
Help: "The Unix timestamp when operation_phase was last updated.",
},
)
var rebootQueueEntries = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "reboot_queue_entries",
Help: "The number of reboot queue entries remaining.",
},
)
var sabakanIntegrationSuccessful = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "sabakan_integration_successful",
Help: "1 if sabakan-integration satisfies constraints.",
},
)
var sabakanIntegrationTimestampSeconds = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "sabakan_integration_timestamp_seconds",
Help: "The Unix timestamp when sabakan_integration_successful was last updated.",
},
)
var sabakanWorkers = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "sabakan_workers",
Help: "The number of worker nodes for each role.",
},
[]string{"role"},
)
var sabakanUnusedMachines = prometheus.NewGauge(
prometheus.GaugeOpts{
Namespace: namespace,
Name: "sabakan_unused_machines",
Help: "The number of unused machines.",
},
)