-
Notifications
You must be signed in to change notification settings - Fork 60
/
main.go
189 lines (157 loc) · 4.68 KB
/
main.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package main
import (
"bytes"
"net/http"
_ "net/http/pprof"
"os"
"runtime"
"strings"
"github.com/coroot/coroot-node-agent/common"
"github.com/coroot/coroot-node-agent/containers"
"github.com/coroot/coroot-node-agent/flags"
"github.com/coroot/coroot-node-agent/logs"
"github.com/coroot/coroot-node-agent/node"
"github.com/coroot/coroot-node-agent/proc"
"github.com/coroot/coroot-node-agent/profiling"
"github.com/coroot/coroot-node-agent/prom"
"github.com/coroot/coroot-node-agent/tracing"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"golang.org/x/mod/semver"
"golang.org/x/sys/unix"
"golang.org/x/time/rate"
"k8s.io/klog/v2"
)
var (
version = "unknown"
)
const minSupportedKernelVersion = "4.16"
func uname() (string, string, error) {
runtime.LockOSThread()
defer runtime.UnlockOSThread()
f, err := os.Open("/proc/1/ns/uts")
if err != nil {
return "", "", err
}
defer f.Close()
self, err := os.Open("/proc/self/ns/uts")
if err != nil {
return "", "", err
}
defer self.Close()
defer func() {
unix.Setns(int(self.Fd()), unix.CLONE_NEWUTS)
}()
err = unix.Setns(int(f.Fd()), unix.CLONE_NEWUTS)
if err != nil {
return "", "", err
}
var utsname unix.Utsname
if err := unix.Uname(&utsname); err != nil {
return "", "", err
}
hostname := string(bytes.Split(utsname.Nodename[:], []byte{0})[0])
kernelVersion := string(bytes.Split(utsname.Release[:], []byte{0})[0])
return hostname, kernelVersion, nil
}
func machineID() string {
for _, p := range []string{"/etc/machine-id", "/var/lib/dbus/machine-id", "/sys/devices/virtual/dmi/id/product_uuid"} {
payload, err := os.ReadFile(proc.HostPath(p))
if err != nil {
klog.Warningln("failed to read machine-id:", err)
continue
}
id := strings.TrimSpace(strings.Replace(string(payload), "-", "", -1))
klog.Infoln("machine-id: ", id)
return id
}
return ""
}
func systemUUID() string {
payload, err := os.ReadFile(proc.HostPath("/sys/devices/virtual/dmi/id/product_uuid"))
if err != nil {
klog.Warningln("failed to read system-uuid:", err)
return ""
}
return strings.TrimSpace(string(payload))
}
func whitelistNodeExternalNetworks() {
netdevs, err := node.NetDevices()
if err != nil {
klog.Warningln("failed to get network interfaces:", err)
return
}
for _, iface := range netdevs {
for _, p := range iface.IPPrefixes {
if p.IP().IsLoopback() || common.IsIpPrivate(p.IP()) {
continue
}
// if the node has an external network IP, whitelist that network
common.ConnectionFilter.WhitelistPrefix(p)
}
}
}
func main() {
klog.LogToStderr(false)
klog.SetOutput(&RateLimitedLogOutput{limiter: rate.NewLimiter(rate.Limit(*flags.LogPerSecond), *flags.LogBurst)})
klog.Infoln("agent version:", version)
hostname, kv, err := uname()
if err != nil {
klog.Exitln("failed to get uname:", err)
}
klog.Infoln("hostname:", hostname)
klog.Infoln("kernel version:", kv)
ver := common.KernelMajorMinor(kv)
if ver == "" {
klog.Exitln("invalid kernel version:", kv)
}
if semver.Compare("v"+ver, "v"+minSupportedKernelVersion) == -1 {
klog.Exitf("the minimum Linux kernel version required is %s or later", minSupportedKernelVersion)
}
whitelistNodeExternalNetworks()
machineId := machineID()
systemUuid := systemUUID()
tracing.Init(machineId, hostname, version)
logs.Init(machineId, hostname, version)
registry := prometheus.NewRegistry()
registerer := prometheus.WrapRegistererWith(prometheus.Labels{"machine_id": machineId, "system_uuid": systemUuid}, registry)
registerer.MustRegister(info("node_agent_info", version))
if err := registerer.Register(node.NewCollector(hostname, kv)); err != nil {
klog.Exitln(err)
}
processInfoCh := profiling.Init(machineId, hostname)
cr, err := containers.NewRegistry(registerer, kv, processInfoCh)
if err != nil {
klog.Exitln(err)
}
defer cr.Close()
profiling.Start()
defer profiling.Stop()
if err := prom.StartAgent(machineId); err != nil {
klog.Exitln(err)
}
http.Handle("/metrics", promhttp.HandlerFor(registry, promhttp.HandlerOpts{ErrorLog: logger{}, Registry: registerer}))
klog.Infoln("listening on:", *flags.ListenAddress)
klog.Errorln(http.ListenAndServe(*flags.ListenAddress, nil))
}
func info(name, version string) prometheus.Collector {
g := prometheus.NewGauge(prometheus.GaugeOpts{
Name: name,
ConstLabels: prometheus.Labels{"version": version},
})
g.Set(1)
return g
}
type logger struct{}
func (l logger) Println(v ...interface{}) {
klog.Errorln(v...)
}
type RateLimitedLogOutput struct {
limiter *rate.Limiter
}
func (o *RateLimitedLogOutput) Write(data []byte) (int, error) {
if !o.limiter.Allow() {
return len(data), nil
}
return os.Stderr.Write(data)
}