-
Notifications
You must be signed in to change notification settings - Fork 0
/
sentry-kubernetes.py
233 lines (182 loc) · 6.74 KB
/
sentry-kubernetes.py
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
from kubernetes import client, config, watch
from kubernetes.client.rest import ApiException
from raven import breadcrumbs
from raven import Client as SentryClient
from raven.transport.threaded_requests import ThreadedRequestsHTTPTransport
from urllib3.exceptions import ProtocolError
import argparse
import logging
import os
import time
SDK_VALUE = {"name": "sentry-kubernetes", "version": "1.0.0"}
# mapping from k8s event types to event levels
LEVEL_MAPPING = {"normal": "info"}
LOG_LEVEL = os.environ.get("LOG_LEVEL", "error")
DSN = os.environ.get("DSN")
ENV = os.environ.get("ENVIRONMENT")
RELEASE = os.environ.get("RELEASE")
CLUSTER_NAME = os.environ.get("CLUSTER_NAME")
def _listify_env(name, default=None):
value = os.getenv(name) or ""
result = []
for item in value.split(","):
item = item.strip()
if item:
result.append(item)
if not result and default:
return default
return result
MANGLE_NAMES = _listify_env("MANGLE_NAMES")
EVENT_LEVELS = _listify_env("EVENT_LEVELS", ["warning", "error"])
REASONS_EXCLUDED = _listify_env("REASON_FILTER")
COMPONENTS_EXCLUDED = _listify_env("COMPONENT_FILTER")
DEPRECATED_EVENT_NAMESPACE = (
[os.getenv("EVENT_NAMESPACE")] if os.getenv("EVENT_NAMESPACE") else None
)
EVENT_NAMESPACES = _listify_env("EVENT_NAMESPACES", DEPRECATED_EVENT_NAMESPACE)
def main():
parser = argparse.ArgumentParser()
parser.add_argument("--log-level", default=LOG_LEVEL)
args = parser.parse_args()
log_level = args.log_level.upper()
logging.basicConfig(format="%(asctime)s %(message)s", level=log_level)
logging.debug("log_level: %s" % log_level)
try:
config.load_incluster_config()
except:
config.load_kube_config()
while True:
try:
watch_loop()
except ApiException as e:
logging.error(
"Exception when calling CoreV1Api->list_event_for_all_namespaces: %s\n"
% e
)
time.sleep(5)
except ProtocolError:
logging.warning("ProtocolError exception. Continuing...")
except Exception as e:
logging.exception("Unhandled exception occurred.")
def watch_loop():
logging.info("Starting Kubernetes watcher")
v1 = client.CoreV1Api()
w = watch.Watch()
logging.info("Initializing Sentry client")
sentry = SentryClient(
dsn=DSN,
install_sys_hook=False,
install_logging_hook=False,
include_versions=False,
capture_locals=False,
context={},
environment=ENV,
release=RELEASE,
transport=ThreadedRequestsHTTPTransport,
)
# try:
# resource_version = v1.list_event_for_all_namespaces().items[-1].metadata.resource_version
# except:
# resource_version = 0
if EVENT_NAMESPACES and len(EVENT_NAMESPACES) == 1:
stream = w.stream(v1.list_namespaced_event, EVENT_NAMESPACES[0])
else:
stream = w.stream(v1.list_event_for_all_namespaces)
for event in stream:
logging.debug("event: %s" % event)
event_type = event["type"].lower()
event = event["object"]
meta = {k: v for k, v in event.metadata.to_dict().items() if v is not None}
creation_timestamp = meta.pop("creation_timestamp", None)
level = event.type and event.type.lower()
level = LEVEL_MAPPING.get(level, level)
component = source_host = reason = namespace = name = short_name = kind = None
if event.source:
source = event.source.to_dict()
if "component" in source:
component = source["component"]
if COMPONENTS_EXCLUDED and component in COMPONENTS_EXCLUDED:
continue
if "host" in source:
source_host = source["host"]
if event.reason:
reason = event.reason
if REASONS_EXCLUDED and reason in REASONS_EXCLUDED:
continue
if event.involved_object and event.involved_object.namespace:
namespace = event.involved_object.namespace
elif "namespace" in meta:
namespace = meta["namespace"]
if namespace and EVENT_NAMESPACES and namespace not in EVENT_NAMESPACES:
continue
if event.involved_object and event.involved_object.kind:
kind = event.involved_object.kind
if event.involved_object and event.involved_object.name:
name = event.involved_object.name
if not MANGLE_NAMES or kind in MANGLE_NAMES:
bits = name.split("-")
if len(bits) in (1, 2):
short_name = bits[0]
else:
short_name = "-".join(bits[:-2])
else:
short_name = name
message = event.message
if namespace and short_name:
obj_name = "(%s/%s)" % (namespace, short_name)
else:
obj_name = "(%s)" % (namespace,)
if level in EVENT_LEVELS or event_type in ("error",):
if event.involved_object:
meta["involved_object"] = {
k: v
for k, v in event.involved_object.to_dict().items()
if v is not None
}
fingerprint = []
tags = {}
if CLUSTER_NAME:
tags["cluster"] = CLUSTER_NAME
if component:
tags["component"] = component
if reason:
tags["reason"] = event.reason
fingerprint.append(event.reason)
if namespace:
tags["namespace"] = namespace
fingerprint.append(namespace)
if short_name:
tags["name"] = short_name
fingerprint.append(short_name)
if kind:
tags["kind"] = kind
fingerprint.append(kind)
data = {
"sdk": SDK_VALUE,
"server_name": source_host or "n/a",
"culprit": "%s %s" % (obj_name, reason),
}
logging.debug("Sending event to Sentry:\n{}".format(data))
sentry.captureMessage(
message,
# culprit=culprit,
data=data,
date=creation_timestamp,
extra=meta,
fingerprint=fingerprint,
level=level,
tags=tags,
)
data = {}
if name:
data["name"] = name
if namespace:
data["namespace"] = namespace
breadcrumbs.record(
data=data,
level=level,
message=message,
timestamp=time.mktime(creation_timestamp.timetuple()),
)
if __name__ == "__main__":
main()