Skip to content

Commit

Permalink
refactor tween list check, tween exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
cnnradams committed Jun 4, 2020
1 parent d106094 commit 89fc53c
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 68 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

from pyramid.config import Configurator
from pyramid.path import caller_package
from pyramid.tweens import EXCVIEW
from pyramid.settings import aslist
from wrapt import ObjectProxy
from wrapt import wrap_function_wrapper as _wrap

Expand All @@ -88,18 +88,15 @@

def traced_init(wrapped, instance, args, kwargs):
settings = kwargs.get("settings", {})
tweens = settings.get("pyramid.tweens")
tweens = aslist(settings.get("pyramid.tweens", []))

if tweens and tweens.strip() and TWEEN_NAME not in settings:
if tweens and TWEEN_NAME not in settings:
# pyramid.tweens.EXCVIEW is the name of built-in exception view provided by
# pyramid. We need our tween to be before it, otherwise unhandled
# exceptions will be caught before they reach our tween.
idx = tweens.find(EXCVIEW)
if idx == -1:
tween_list = tweens + "\n" + TWEEN_NAME
else:
tween_list = tweens[:idx] + TWEEN_NAME + "\n" + tweens[idx:]
settings["pyramid.tweens"] = tween_list
tweens = [TWEEN_NAME] + tweens

settings["pyramid.tweens"] = "\n".join(tweens)

kwargs["settings"] = settings

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,63 +108,66 @@ def trace_tween_factory(handler, registry):
settings = registry.settings
enabled = asbool(settings.get(SETTING_TRACE_ENABLED, True))

if enabled:
# make a request tracing function
def trace_tween(request):
if disable_trace(request.url, _excluded_hosts, _excluded_paths):
request.environ[_ENVIRON_ENABLED_KEY] = False
# short-circuit when we don't want to trace anything
return handler(request)

request.environ[_ENVIRON_ENABLED_KEY] = True
request.environ[_ENVIRON_STARTTIME_KEY] = time_ns()

response = None
try:
response = handler(request)
except HTTPException as exc:
# If the exception is a pyramid HTTPException,
# that's still valuable information that isn't necessarily
# a 500. For instance, HTTPFound is a 302.
# As described in docs, Pyramid exceptions are all valid
# response types
response = exc
raise
finally:
span = request.environ.get(_ENVIRON_SPAN_KEY)
enabled = request.environ.get(_ENVIRON_ENABLED_KEY)
if not span and enabled:
_logger.warning(
"Pyramid environ's OpenTelemetry span missing."
"If the OpenTelemetry tween was added manually, make sure"
"PyramidInstrumentor().instrument_config(config) is called"
if not enabled:
# If disabled, make a tween that signals to the
# BeforeTraversal subscriber that tracing is disabled
def disabled_tween(request):
request.environ[_ENVIRON_ENABLED_KEY] = False
return handler(request)

return disabled_tween

# make a request tracing function
def trace_tween(request):
if disable_trace(request.url, _excluded_hosts, _excluded_paths):
request.environ[_ENVIRON_ENABLED_KEY] = False
# short-circuit when we don't want to trace anything
return handler(request)

request.environ[_ENVIRON_ENABLED_KEY] = True
request.environ[_ENVIRON_STARTTIME_KEY] = time_ns()

try:
response = handler(request)
response_or_exception = response
except HTTPException as exc:
# If the exception is a pyramid HTTPException,
# that's still valuable information that isn't necessarily
# a 500. For instance, HTTPFound is a 302.
# As described in docs, Pyramid exceptions are all valid
# response types
response_or_exception = exc
raise
finally:
span = request.environ.get(_ENVIRON_SPAN_KEY)
enabled = request.environ.get(_ENVIRON_ENABLED_KEY)
if not span and enabled:
_logger.warning(
"Pyramid environ's OpenTelemetry span missing."
"If the OpenTelemetry tween was added manually, make sure"
"PyramidInstrumentor().instrument_config(config) is called"
)
elif enabled:
if response_or_exception:
otel_wsgi.add_response_attributes(
span,
response_or_exception.status,
response_or_exception.headers,
)

activation = request.environ.get(_ENVIRON_ACTIVATION_KEY)

if isinstance(response_or_exception, HTTPException):
activation.__exit__(
type(response_or_exception),
response_or_exception,
getattr(response_or_exception, "__traceback__", None),
)
elif enabled:
if response:
otel_wsgi.add_response_attributes(
span, response.status, response.headers
)

activation = request.environ.get(_ENVIRON_ACTIVATION_KEY)

if isinstance(response, HTTPException):
activation.__exit__(
type(response),
response,
getattr(response, "__traceback__", None),
)
else:
activation.__exit__(None, None, None)

context.detach(request.environ.get(_ENVIRON_TOKEN))
return response

return trace_tween

# If not enabled, make a tween that signals to the
# BeforeTraversal subscriber that tracing is disabled
def disabled_tween(request):
request.environ[_ENVIRON_ENABLED_KEY] = False
return handler(request)

return disabled_tween
else:
activation.__exit__(None, None, None)

context.detach(request.environ.get(_ENVIRON_TOKEN))

return response

return trace_tween

0 comments on commit 89fc53c

Please sign in to comment.