-
Notifications
You must be signed in to change notification settings - Fork 64
/
watcher_pods.go
211 lines (173 loc) · 5.63 KB
/
watcher_pods.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package main
import (
"context"
"fmt"
"time"
"github.com/getsentry/sentry-go"
"github.com/rs/zerolog"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/tools/cache"
toolsWatch "k8s.io/client-go/tools/watch"
)
const podsWatcherName = "pods"
var cronsMetaData = NewCronsMetaData()
func handlePodTerminationEvent(ctx context.Context, containerStatus *v1.ContainerStatus, pod *v1.Pod, scope *sentry.Scope) *sentry.Event {
logger := zerolog.Ctx(ctx)
state := containerStatus.State.Terminated
logger.Trace().Msgf("Container state: %#v", state)
if state.ExitCode == 0 {
// Nothing to do
return nil
}
setTagIfNotEmpty(scope, "reason", state.Reason)
setTagIfNotEmpty(scope, "kind", KindPod)
setTagIfNotEmpty(scope, "object_uid", string(pod.UID))
setTagIfNotEmpty(scope, "namespace", pod.Namespace)
setTagIfNotEmpty(scope, "pod_name", pod.Name)
setTagIfNotEmpty(scope, "container_name", containerStatus.Name)
// FIXME: there's no proper controller we can extract here, so inventing a new one
setTagIfNotEmpty(scope, "event_source_component", "x-pod-controller")
if containerStatusJSON, err := prettyJSON(containerStatus); err == nil {
scope.SetContext("Container", sentry.Context{
"Status": containerStatusJSON,
})
}
message := state.Message
if message == "" {
message = fmt.Sprintf(
"%s: container %q",
state.Reason,
containerStatus.Name,
)
}
sentryEvent := buildSentryEventFromPodTerminationEvent(ctx, pod, message, scope)
return sentryEvent
}
func buildSentryEventFromPodTerminationEvent(ctx context.Context, pod *v1.Pod, message string, scope *sentry.Scope) *sentry.Event {
logger := zerolog.Ctx(ctx)
sentryEvent := &sentry.Event{Message: message, Level: sentry.LevelError}
err := runEnhancers(ctx, nil, KindPod, pod, scope, sentryEvent)
if err != nil {
logger.Err(err)
}
return sentryEvent
}
func handlePodWatchEvent(ctx context.Context, event *watch.Event) {
logger := zerolog.Ctx(ctx)
eventObjectRaw := event.Object
if event.Type != watch.Modified {
logger.Debug().Msgf("Skipping a pod watch event of type %s", event.Type)
return
}
objectKind := eventObjectRaw.GetObjectKind()
podObject, ok := eventObjectRaw.(*v1.Pod)
if !ok {
logger.Warn().Msgf("Skipping an event of kind '%v' because it cannot be casted", objectKind)
return
}
logger.Trace().Msgf("Pod Object received: %#v", podObject)
ctx, logger = getLoggerWithTag(ctx, "namespace", podObject.GetNamespace())
if podObject.DeletionTimestamp != nil {
logger.Debug().Msgf("Pod is about to be deleted; ignoring state modifications")
return
}
hub := sentry.GetHubFromContext(ctx)
if hub == nil {
logger.Error().Msgf("Cannot get Sentry hub from context")
return
}
// To avoid concurrency issue
hub = hub.Clone()
containerStatuses := podObject.Status.ContainerStatuses
logger.Trace().Msgf("Container statuses: %#v\n", containerStatuses)
for i, status := range containerStatuses {
state := status.State
if state.Terminated == nil {
// Ignore non-Terminated statuses
continue
}
hub.WithScope(func(scope *sentry.Scope) {
// If DSN annotation provided, we bind a new client with that DSN
client, ok := dsnClientMapping.GetClientFromObject(ctx, &podObject.ObjectMeta, hub.Client().Options())
if ok {
hub.BindClient(client)
}
// Pass down clone context
ctx = sentry.SetHubOnContext(ctx, hub)
setWatcherTag(scope, podsWatcherName)
sentryEvent := handlePodTerminationEvent(ctx, &containerStatuses[i], podObject, scope)
if sentryEvent != nil {
hub.CaptureEvent(sentryEvent)
}
})
}
}
// TODO: dedupe with events
func watchPodsInNamespace(ctx context.Context, namespace string) (err error) {
logger := zerolog.Ctx(ctx)
clientset, err := getClientsetFromContext(ctx)
if err != nil {
return err
}
watchFunc := func(options metav1.ListOptions) (watch.Interface, error) {
opts := metav1.ListOptions{
Watch: true,
}
return clientset.CoreV1().Pods(namespace).Watch(ctx, opts)
}
logger.Debug().Msg("Getting the pod watcher")
retryWatcher, err := toolsWatch.NewRetryWatcher("1", &cache.ListWatch{WatchFunc: watchFunc})
if err != nil {
return err
}
watchCh := retryWatcher.ResultChan()
defer retryWatcher.Stop()
logger.Debug().Msg("Reading from the event channel (pods)")
for event := range watchCh {
handlePodWatchEvent(ctx, &event)
}
return nil
}
// TODO: dedupe with events
func watchPodsInNamespaceForever(ctx context.Context, config *rest.Config, namespace string) error {
localHub := sentry.CurrentHub().Clone()
ctx = sentry.SetHubOnContext(ctx, localHub)
where := fmt.Sprintf("in namespace '%s'", namespace)
namespaceTag := namespace
if namespace == v1.NamespaceAll {
where = "in all namespaces"
namespaceTag = "__all__"
}
// Attach the "namespace" tag to logger
ctx, logger := getLoggerWithTags(
ctx,
map[string]string{
"namespace": namespaceTag,
"watcher": podsWatcherName,
},
)
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
return err
}
ctx = setClientsetOnContext(ctx, clientset)
// Start the informers for Sentry event capturing
// and caching with the indexers
go startInformers(ctx, namespace)
for {
if err := watchPodsInNamespace(ctx, namespace); err != nil {
logger.Error().Msgf("Error while watching pods %s: %s", where, err)
}
// Note: some events might be lost when we're sleeping here
time.Sleep(time.Second * 1)
}
}
func startPodWatchers(ctx context.Context, config *rest.Config, namespaces []string) {
for _, namespace := range namespaces {
go watchPodsInNamespaceForever(ctx, config, namespace)
}
}