-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathmain.go
More file actions
239 lines (201 loc) · 5.88 KB
/
main.go
File metadata and controls
239 lines (201 loc) · 5.88 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package main
import (
"bytes"
"context"
"net/http"
_ "net/http/pprof"
"os"
"os/signal"
"runtime"
"strings"
"syscall"
"time"
"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/gpu"
"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/sys/unix"
"golang.org/x/time/rate"
"k8s.io/klog/v2"
)
var (
version = flags.Version
)
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)
if err = common.SetKernelVersion(kv); err != nil {
klog.Exitln(err)
}
if !common.GetKernelVersion().GreaterOrEqual(common.NewVersion(4, 16, 0)) {
klog.Exitln("the minimum Linux kernel version required is 4.16 or later")
}
whitelistNodeExternalNetworks()
machineId := machineID()
systemUuid := systemUUID()
tracing.Init(machineId, hostname, version)
logs.Init(machineId, hostname, version)
nodeCollector := node.NewCollector(hostname, kv)
registry := prometheus.NewRegistry()
registerer := prometheus.WrapRegistererWith(
prometheus.Labels{"machine_id": machineId, "system_uuid": systemUuid},
registry,
)
if err := registerer.Register(nodeCollector); err != nil {
klog.Exitln(err)
}
gpuCollector, err := gpu.NewCollector()
if err != nil {
klog.Warningln("failed to initialize GPU collector:", err)
}
if err := registerer.Register(gpuCollector); err != nil {
klog.Exitln(err)
}
registerer.MustRegister(info("node_agent_info", version))
if md := nodeCollector.Metadata(); md != nil {
region := md.Region
az := md.AvailabilityZone
if region != "" && az != "" {
registerer = prometheus.WrapRegistererWith(prometheus.Labels{"az": az, "region": region}, registerer)
}
}
processInfoCh, jvmProfilingCh := profiling.Init(machineId, hostname)
cr, err := containers.NewRegistry(registerer, processInfoCh, jvmProfilingCh, gpuCollector.ProcessUsageSampleCh)
if err != nil {
klog.Exitln(err)
}
profiling.Start()
if err := prom.StartAgent(registry, machineId, systemUuid); err != nil {
klog.Exitln(err)
}
http.Handle("/metrics", promhttp.HandlerFor(registry, promhttp.HandlerOpts{ErrorLog: logger{}, Registry: registerer}))
klog.Infoln("listening on:", *flags.ListenAddress)
srv := &http.Server{Addr: *flags.ListenAddress}
sigCh := make(chan os.Signal, 1)
signal.Notify(sigCh, syscall.SIGTERM, syscall.SIGINT)
go func() {
if err := srv.ListenAndServe(); err != nil && err != http.ErrServerClosed {
klog.Exitln(err)
}
}()
sig := <-sigCh
klog.Infof("received %s, shutting down", sig)
shutdownCtx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
if err := srv.Shutdown(shutdownCtx); err != nil {
klog.Warningf("HTTP server shutdown error: %s", err)
}
done := make(chan struct{})
go func() {
defer close(done)
cr.Close()
profiling.Stop()
}()
select {
case <-done:
klog.Infoln("cleanup completed")
case <-time.After(10 * time.Second):
klog.Warningln("cleanup timed out, forcing exit")
}
}
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)
}