-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathflask_middleware.py
250 lines (211 loc) · 9.28 KB
/
flask_middleware.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# Copyright 2017, OpenCensus Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import six
import logging
import sys
import traceback
import flask
from google.rpc import code_pb2
from opencensus.common import configuration
from opencensus.trace import (
attributes_helper,
execution_context,
integrations,
print_exporter,
samplers,
)
from opencensus.trace import span as span_module
from opencensus.trace import stack_trace, status
from opencensus.trace import tracer as tracer_module
from opencensus.trace import utils
from opencensus.trace.propagation import trace_context_http_header_format
HTTP_HOST = attributes_helper.COMMON_ATTRIBUTES['HTTP_HOST']
HTTP_METHOD = attributes_helper.COMMON_ATTRIBUTES['HTTP_METHOD']
HTTP_PATH = attributes_helper.COMMON_ATTRIBUTES['HTTP_PATH']
HTTP_ROUTE = attributes_helper.COMMON_ATTRIBUTES['HTTP_ROUTE']
HTTP_URL = attributes_helper.COMMON_ATTRIBUTES['HTTP_URL']
HTTP_STATUS_CODE = attributes_helper.COMMON_ATTRIBUTES['HTTP_STATUS_CODE']
ERROR_MESSAGE = attributes_helper.COMMON_ATTRIBUTES['ERROR_MESSAGE']
ERROR_NAME = attributes_helper.COMMON_ATTRIBUTES['ERROR_NAME']
STACKTRACE = attributes_helper.COMMON_ATTRIBUTES['STACKTRACE']
EXCLUDELIST_PATHS = 'EXCLUDELIST_PATHS'
EXCLUDELIST_HOSTNAMES = 'EXCLUDELIST_HOSTNAMES'
log = logging.getLogger(__name__)
class FlaskMiddleware(object):
"""Flask middleware to automatically trace requests.
:type app: :class: `~flask.Flask`
:param app: A flask application.
:type excludelist_paths: list
:param excludelist_paths: Paths that do not trace.
:type sampler: :class:`~opencensus.trace.samplers.base.Sampler`
:param sampler: A sampler. It should extend from the base
:class:`.Sampler` type and implement
:meth:`.Sampler.should_sample`. Defaults to
:class:`.ProbabilitySampler`. Other options include
:class:`.AlwaysOnSampler` and :class:`.AlwaysOffSampler`.
:type exporter: :class:`~opencensus.trace.base_exporter.exporter`
:param exporter: An exporter. Default to
:class:`.PrintExporter`. The rest options are
:class:`.FileExporter`, :class:`.LoggingExporter` and
trace exporter extensions.
:type propagator: :class: 'object'
:param propagator: A propagator. Default to
:class:`.TraceContextPropagator`. The rest options
are :class:`.BinaryFormatPropagator`,
:class:`.GoogleCloudFormatPropagator` and
:class:`.TextFormatPropagator`.
"""
def __init__(self, app=None, excludelist_paths=None, sampler=None,
exporter=None, propagator=None):
self.app = app
self.excludelist_paths = excludelist_paths
self.sampler = sampler
self.exporter = exporter
self.propagator = propagator
if self.app is not None:
self.init_app(app)
def init_app(self, app):
self.app = app
# get settings from app config
settings = self.app.config.get('OPENCENSUS', {})
settings = settings.get('TRACE', {})
if self.sampler is None:
self.sampler = (settings.get('SAMPLER', None)
or samplers.ProbabilitySampler())
if isinstance(self.sampler, six.string_types):
self.sampler = configuration.load(self.sampler)
if self.exporter is None:
self.exporter = settings.get('EXPORTER', None) or \
print_exporter.PrintExporter()
if isinstance(self.exporter, six.string_types):
self.exporter = configuration.load(self.exporter)
if self.propagator is None:
self.propagator = settings.get('PROPAGATOR', None) or \
trace_context_http_header_format.TraceContextPropagator()
if isinstance(self.propagator, six.string_types):
self.propagator = configuration.load(self.propagator)
self.excludelist_paths = settings.get(EXCLUDELIST_PATHS,
self.excludelist_paths)
self.excludelist_hostnames = settings.get(EXCLUDELIST_HOSTNAMES, None)
self.setup_trace()
# pylint: disable=protected-access
integrations.add_integration(integrations._Integrations.FLASK)
def setup_trace(self):
self.app.before_request(self._before_request)
self.app.after_request(self._after_request)
self.app.teardown_request(self._teardown_request)
def _before_request(self):
"""A function to be run before each request.
See: http://flask.pocoo.org/docs/0.12/api/#flask.Flask.before_request
"""
# Do not trace if the url is in the exclude list
if utils.disable_tracing_url(
flask.request.url, self.excludelist_paths
):
return
try:
span_context = self.propagator.from_headers(flask.request.headers)
tracer = tracer_module.Tracer(
span_context=span_context,
sampler=self.sampler,
exporter=self.exporter,
propagator=self.propagator)
span = tracer.start_span()
span.span_kind = span_module.SpanKind.SERVER
# Set the span name as the name of the current module name
span.name = '[{}]{}'.format(
flask.request.method,
flask.request.url)
tracer.add_attribute_to_current_span(
HTTP_HOST, flask.request.host
)
tracer.add_attribute_to_current_span(
HTTP_METHOD, flask.request.method
)
tracer.add_attribute_to_current_span(
HTTP_PATH, flask.request.path
)
tracer.add_attribute_to_current_span(
HTTP_URL, str(flask.request.url)
)
execution_context.set_opencensus_attr(
'excludelist_hostnames',
self.excludelist_hostnames
)
except Exception: # pragma: NO COVER
log.error('Failed to trace request', exc_info=True)
def _after_request(self, response):
"""A function to be run after each request.
See: http://flask.pocoo.org/docs/0.12/api/#flask.Flask.after_request
"""
# Do not trace if the url is in the exclude list
if utils.disable_tracing_url(
flask.request.url, self.excludelist_paths
):
return response
try:
tracer = execution_context.get_opencensus_tracer()
url_rule = flask.request.url_rule
if url_rule is not None:
tracer.add_attribute_to_current_span(
HTTP_ROUTE, url_rule.rule
)
tracer.add_attribute_to_current_span(
HTTP_STATUS_CODE,
response.status_code
)
except Exception: # pragma: NO COVER
log.error('Failed to trace request', exc_info=True)
finally:
return response
def _teardown_request(self, exception):
# Do not trace if the url is in the exclude list
if utils.disable_tracing_url(
flask.request.url, self.excludelist_paths
):
return
try:
tracer = execution_context.get_opencensus_tracer()
if exception is not None:
span = execution_context.get_current_span()
if span is not None:
span.status = status.Status(
code=code_pb2.UNKNOWN,
message=str(exception)
)
span.add_attribute(
attribute_key=ERROR_NAME,
attribute_value=exception.__class__.__name__)
span.add_attribute(
attribute_key=ERROR_MESSAGE,
attribute_value=str(exception))
if hasattr(exception, '__traceback__'):
exc_traceback = exception.__traceback__
else:
exc_type, _, exc_traceback = sys.exc_info()
if exc_traceback is not None:
span.stack_trace = (
stack_trace.StackTrace.from_traceback(
exc_traceback
)
)
span.add_attribute(
attribute_key=STACKTRACE,
attribute_value='\n'.join(
traceback.format_tb(exc_traceback))
)
tracer.end_span()
tracer.finish()
except Exception: # pragma: NO COVER
log.error('Failed to trace request', exc_info=True)