forked from draganm/missing-container-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
108 lines (89 loc) · 2.33 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
package main
import (
"context"
"net/http"
"strings"
"github.com/docker/docker/api/types"
"github.com/docker/docker/client"
"github.com/pkg/errors"
"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",
},
},
},
Action: func(c *cli.Context) error {
logger, err := zap.NewProduction()
if err != nil {
return err
}
slogger := logger.Sugar().With("version", Version)
slogger.Info("started")
dc, err := client.NewEnvClient()
if err != nil {
return errors.Wrap(err, "while creating docker client")
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
evts, errs := dc.Events(ctx, types.EventsOptions{})
containers, err := dc.ContainerList(ctx, types.ContainerListOptions{
All: true,
})
if err != nil {
return errors.Wrap(err, "while listing containers")
}
h := newEventHandler(func(containerID string) (pod string, namespace string) {
res, err := dc.ContainerInspect(context.Background(), containerID)
if err != nil {
return "", ""
}
pod = res.Config.Labels["io.kubernetes.pod.name"]
namespace = res.Config.Labels["io.kubernetes.pod.namespace"]
return pod, namespace
})
for _, c := range containers {
ci, err := dc.ContainerInspect(ctx, c.ID)
if err != nil {
slogger.With("container_id", c.ID, "error", err).Warn("while getting container info")
continue
}
cnt := h.addContainer(c.ID, strings.TrimPrefix(c.Names[0], "/"), c.Image)
if ci.State.Status == "exited" {
cnt.die(ci.State.ExitCode)
}
}
http.Handle("/metrics", promhttp.Handler())
a := c.String("bind-address")
go func() {
slogger.Infof("Listening on %s", a)
err := http.ListenAndServe(a, nil)
if err != nil {
slogger.With("error", err).Errorf("while listening on %s", a)
}
cancel()
}()
for {
select {
case e := <-evts:
err := h.handle(e)
if err != nil {
return errors.Wrapf(err, "while handling event %#v", e)
}
case err := <-errs:
return errors.Wrap(err, "while reading events")
}
}
},
}
a.RunAndExitOnError()
}