-
Notifications
You must be signed in to change notification settings - Fork 30
/
open_telemetry.py
191 lines (165 loc) · 6.62 KB
/
open_telemetry.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
import json
import logging
import os
from datetime import datetime
import requests
from codecovopentelem import (
CoverageSpanFilter,
UnableToStartProcessorException,
get_codecov_opentelemetry_instances,
)
from opentelemetry import trace
from opentelemetry.instrumentation.django import DjangoInstrumentor
from opentelemetry.sdk.trace import TracerProvider
from opentelemetry.sdk.trace.export import (
BatchSpanProcessor,
SpanExporter,
SpanExportResult,
)
from utils.version import get_current_version
log = logging.getLogger(__name__)
class CodecovExporter(SpanExporter):
"""
CodecovExporter is used to pass span data to codecov in a way that is actionable
"""
def __init__(self, options={}):
"""
store values provided by user. we skip default values here to maintain
code simplicity and ensure that it's always clear what values are passed.
"""
self.attributes = {
# 'api' is the backend that this exporter talks to
"api": options["api"],
# 'env' is either 'test' or 'prod'
"env": options["env"],
# 'token' is a codecov-provided token bound to a repo
"token": options["token"],
# 'release' is the current release number, provided by user
"release": options["release"],
}
def _date_to_millis(self, dt):
d = datetime.fromisoformat(dt.split(".")[0])
return d.timestamp() * 1000
def _format_span(self, span):
"""
returns a span with codecov attributes prefixed with "codecov.request.*"
"""
# set global attributes
s = json.loads(span.to_json())
span_attributes = s["attributes"]
# start_time and end_time should be in millis
s["start_time"] = self._date_to_millis(s["start_time"])
s["end_time"] = self._date_to_millis(s["end_time"])
# don't love that this exists as it can be derived
s["duration"] = s["end_time"] - s["start_time"]
# ::calculate path::
# NOTE: flask uses http.route & django uses http.target?
# TODO: figure out exactly what's going on here..
path = (
span_attributes["http.route"]
if "http.route" in span_attributes
else span_attributes["http.target"]
)
# path should be in format $path\/segments\/
if path[0] == "/":
path = path[1:]
if path[-1] != "/":
path = path + "/"
# required but not used at the moment
# for 404s it appears that django doesn't know how to set paths,
# and so it ends up setting stuff like "HTTP GET", which totally
# screws up results..
s["name"] = path # s["name"] if "name" in s else path
url = (
span_attributes["http.scheme"]
+ "://"
+ span_attributes["http.server_name"]
+ path
)
# codecov-specific attributes
s["attributes"] = {
"codecov.environment": self.attributes["env"],
"codecov.release_id": self.attributes["release"],
"codecov.request.status_code": span_attributes["http.status_code"],
"codecov.request.path": path,
"codecov.request.url": url,
"codecov.request.method": span_attributes["http.method"],
"codecov.request.secure": span_attributes["http.scheme"] == "https",
"codecov.request.ip": span_attributes["net.peer.ip"],
"codecov.request.ua": "unknown",
"codecov.request.user": "unknown",
"codecov.request.action": "unknown",
"codecov.request.server": span_attributes["http.server_name"],
}
s["events"] = []
return s
def export(self, spans):
"""
export span to Codecov backend.
oddly, on failure we don't return any debugging data, so that's just
logged here.
TODO (engineering notes):
* that we should also be handling TooManyRedirects here, which I
have skipped here for POC work
* it's likely that we want to be accepting spans in batches. increase
throughput but also I think for reliability's sake we'd want a single
trace to be treated transactionally.
returns #opentelemetry.sdk.trace.export.SpanExportResult
see opentelemetry-python.readthedocs.io
"""
api = self.attributes["api"]
try:
to_send = [self._format_span(span) for span in spans]
headers = {
"content-type": "application/json",
"Authorization": self.attributes["token"],
}
requests.post(api + "/api/ingest", headers=headers, json=to_send)
except ConnectionError:
logging.exception("failed to export all spans")
return SpanExportResult.FAILURE
except requests.HTTPError as e:
print(e)
logging.exception("HTTP server returned erroneous response")
return SpanExportResult.FAILURE
except requests.Timeout:
logging.exception("request timed out")
return SpanExportResult.FAILURE
except Exception as e:
print(e)
logging.exception("request failed")
return SpanExportResult.FAILURE
return SpanExportResult.SUCCESS
def shutdown(self):
"""
this is where we end tracing session. nothing here..yet
"""
return
def instrument():
provider = TracerProvider()
trace.set_tracer_provider(provider)
log.info("Configuring opentelemetry exporter")
current_version = get_current_version()
current_env = "production"
try:
generator, exporter = get_codecov_opentelemetry_instances(
repository_token=os.getenv("OPENTELEMETRY_TOKEN"),
version_identifier=current_version,
sample_rate=float(os.getenv("OPENTELEMETRY_CODECOV_RATE")),
untracked_export_rate=0,
filters={
CoverageSpanFilter.regex_name_filter: None,
CoverageSpanFilter.span_kind_filter: [
trace.SpanKind.SERVER,
trace.SpanKind.CONSUMER,
],
},
code=f"{current_version}:{current_env}",
codecov_endpoint=os.getenv("OPENTELEMETRY_ENDPOINT"),
environment=current_env,
)
provider.add_span_processor(generator)
provider.add_span_processor(BatchSpanProcessor(exporter))
except UnableToStartProcessorException:
log.warning("Unable to start codecov open telemetry")
DjangoInstrumentor().instrument()