-
Notifications
You must be signed in to change notification settings - Fork 32
/
main.go
98 lines (81 loc) · 1.76 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
package main
import (
"context"
"net/http"
"github.com/draganm/missing-container-metrics/containerd"
"github.com/draganm/missing-container-metrics/docker"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/urfave/cli/v2"
"go.uber.org/zap"
)
var Version string
func main() {
a := &cli.App{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "bind-address",
Value: ":3001",
EnvVars: []string{
"BIND_ADDRESS",
},
},
&cli.BoolFlag{
Name: "docker",
Value: true,
EnvVars: []string{
"DOCKER",
},
},
&cli.BoolFlag{
Name: "containerd",
Value: true,
EnvVars: []string{
"CONTAINERD",
},
},
},
Action: func(c *cli.Context) error {
logger, err := zap.NewProduction()
if err != nil {
return err
}
slogger := logger.Sugar().With("version", Version)
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
if c.Bool("docker") {
go func() {
err := docker.HandleDocker(ctx, slogger)
if err != nil {
slogger.With("error", err).Error("while handling docker")
cancel()
}
}()
}
if c.Bool("containerd") {
go func() {
err := containerd.HandleContainerd(ctx, slogger)
if err != nil {
slogger.With("error", err).Error("while handling containerd")
cancel()
}
}()
}
slogger.Info("started")
a := c.String("bind-address")
mux := http.NewServeMux()
mux.Handle("/metrics", promhttp.Handler())
server := &http.Server{
Addr: a,
Handler: mux,
}
// Close server when the context gets cancelled
go func() {
<-ctx.Done()
server.Close()
}()
slogger.Infof("Listening on %s", a)
return server.ListenAndServe()
},
}
a.RunAndExitOnError()
}