-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtcp.go
84 lines (70 loc) · 1.78 KB
/
tcp.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
package tcp
import (
"context"
"fmt"
"log/slog"
"net"
"time"
"github.com/mcuadros/go-defaults"
ph "github.com/isometry/platform-health/pkg/platform_health"
"github.com/isometry/platform-health/pkg/provider"
"github.com/isometry/platform-health/pkg/utils"
)
const TypeTCP = "tcp"
type TCP struct {
Name string `mapstructure:"name"`
Host string `mapstructure:"host"`
Port int `mapstructure:"port" default:"80"`
Closed bool `mapstructure:"closed" default:"false"`
Timeout time.Duration `mapstructure:"timeout" default:"1s"`
}
func init() {
provider.Register(TypeTCP, new(TCP))
}
func (i *TCP) LogValue() slog.Value {
logAttr := []slog.Attr{
slog.String("name", i.Name),
slog.String("host", i.Host),
slog.Int("port", i.Port),
slog.Bool("closed", i.Closed),
slog.Any("timeout", i.Timeout),
}
return slog.GroupValue(logAttr...)
}
func (i *TCP) SetDefaults() {
defaults.SetDefaults(i)
}
func (i *TCP) GetType() string {
return TypeTCP
}
func (i *TCP) GetName() string {
return i.Name
}
func (i *TCP) GetHealth(ctx context.Context) *ph.HealthCheckResponse {
log := utils.ContextLogger(ctx, slog.String("provider", TypeTCP), slog.Any("instance", i))
log.Debug("checking")
ctx, cancel := context.WithTimeout(ctx, i.Timeout)
defer cancel()
component := &ph.HealthCheckResponse{
Type: TypeTCP,
Name: i.Name,
}
defer component.LogStatus(log)
address := net.JoinHostPort(i.Host, fmt.Sprint(i.Port))
dialer := &net.Dialer{}
conn, err := dialer.DialContext(ctx, "tcp", address)
if err != nil {
if i.Closed {
return component.Healthy()
} else {
return component.Unhealthy(err.Error())
}
} else {
_ = conn.Close()
if i.Closed {
return component.Unhealthy("port open")
} else {
return component.Healthy()
}
}
}