forked from Ilhasoft/courier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhealthcheck.go
111 lines (95 loc) · 2.43 KB
/
healthcheck.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package courier
import (
"context"
"fmt"
"sync"
)
type HealthCheckResult struct {
Status string
Err error
}
type HealthStatus struct {
Status string `json:"status,omitempty"`
Message string `json:"message,omitempty"`
Details map[string]map[string]string `json:"details,omitempty"`
}
type HealthCheck struct {
wg *sync.WaitGroup
HealthStatus *HealthStatus
ComponentChecks []*ComponentCheck
}
type ComponentCheck struct {
name string
checkFunction func() error
result *HealthCheckResult
}
func NewHealthCheck() *HealthCheck {
return &HealthCheck{
wg: &sync.WaitGroup{},
HealthStatus: &HealthStatus{
Details: map[string]map[string]string{},
},
ComponentChecks: []*ComponentCheck{},
}
}
func (hc *HealthCheck) AddCheck(componentName string, checkFunction func() error) {
component := &ComponentCheck{
name: componentName,
checkFunction: checkFunction,
result: &HealthCheckResult{},
}
hc.ComponentChecks = append(hc.ComponentChecks, component)
}
func (hc *HealthCheck) CheckUp(ctx context.Context) {
done := make(chan bool)
totalComponents := len(hc.ComponentChecks)
hc.wg.Add(totalComponents)
hc.HealthStatus.Status = "Ok"
hc.HealthStatus.Message = "All working fine!"
errorsMsgs := ""
for _, c := range hc.ComponentChecks {
// go CheckHealthComponent(hc.wg, c)
go c.CheckComponent(hc.wg)
}
go func() {
hc.wg.Wait()
close(done)
}()
select {
case <-done:
case <-ctx.Done():
hc.HealthStatus.Status = "Timed out"
hc.HealthStatus.Message = "Wait for check is too long. Health Check is timed out."
}
for _, c := range hc.ComponentChecks {
resultMsg := fmt.Sprintf("%s ok", c.name)
if c.result.Status != "Ok" {
if c.result.Err == nil {
c.result.Status = "Timed Out"
c.result.Err = fmt.Errorf("%s check is timed out", c.name)
}
}
if c.result.Err != nil {
resultMsg = c.result.Err.Error()
errorsMsgs = errorsMsgs + ", " + c.result.Err.Error()
}
hc.HealthStatus.Details[c.name] = map[string]string{
"status": c.result.Status,
"message": resultMsg,
}
}
if errorsMsgs != "" {
hc.HealthStatus.Status = "Error"
hc.HealthStatus.Message = errorsMsgs[2:]
}
}
func (c *ComponentCheck) CheckComponent(wg *sync.WaitGroup) {
defer wg.Done()
if err := c.checkFunction(); err != nil {
c.result.Status = "Error"
c.result.Err = err
return
}
c.result.Status = "Ok"
c.result.Err = nil
}