2019-07-11 05:36:03 -04:00
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
#
|
|
|
|
# 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 logging
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from opentracing import Scope, ScopeManager
|
|
|
|
|
|
|
|
import twisted
|
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
from synapse.logging.context import current_context, nested_logging_context
|
2019-07-11 05:36:03 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class LogContextScopeManager(ScopeManager):
|
|
|
|
"""
|
|
|
|
The LogContextScopeManager tracks the active scope in opentracing
|
|
|
|
by using the log contexts which are native to synapse. This is so
|
|
|
|
that the basic opentracing api can be used across twisted defereds.
|
2022-02-02 17:41:57 -05:00
|
|
|
|
|
|
|
It would be nice just to use opentracing's ContextVarsScopeManager,
|
|
|
|
but currently that doesn't work due to https://twistedmatrix.com/trac/ticket/10301.
|
2019-07-11 05:36:03 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, config):
|
2019-07-18 10:06:54 -04:00
|
|
|
pass
|
2019-07-11 05:36:03 -04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def active(self):
|
|
|
|
"""
|
|
|
|
Returns the currently active Scope which can be used to access the
|
|
|
|
currently active Scope.span.
|
|
|
|
If there is a non-null Scope, its wrapped Span
|
|
|
|
becomes an implicit parent of any newly-created Span at
|
|
|
|
Tracer.start_active_span() time.
|
|
|
|
|
|
|
|
Return:
|
|
|
|
(Scope) : the Scope that is active, or None if not
|
|
|
|
available.
|
|
|
|
"""
|
2020-03-24 10:45:33 -04:00
|
|
|
ctx = current_context()
|
|
|
|
return ctx.scope
|
2019-07-11 05:36:03 -04:00
|
|
|
|
|
|
|
def activate(self, span, finish_on_close):
|
|
|
|
"""
|
|
|
|
Makes a Span active.
|
|
|
|
Args
|
|
|
|
span (Span): the span that should become active.
|
|
|
|
finish_on_close (Boolean): whether Span should be automatically
|
|
|
|
finished when Scope.close() is called.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
Scope to control the end of the active period for
|
|
|
|
*span*. It is a programming error to neglect to call
|
|
|
|
Scope.close() on the returned instance.
|
|
|
|
"""
|
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
ctx = current_context()
|
2019-07-11 05:36:03 -04:00
|
|
|
|
2020-03-24 10:45:33 -04:00
|
|
|
if not ctx:
|
2019-07-11 05:36:03 -04:00
|
|
|
logger.error("Tried to activate scope outside of loggingcontext")
|
2021-12-20 07:18:09 -05:00
|
|
|
return Scope(None, span) # type: ignore[arg-type]
|
2022-02-02 17:41:57 -05:00
|
|
|
|
|
|
|
if ctx.scope is not None:
|
|
|
|
# start a new logging context as a child of the existing one.
|
|
|
|
# Doing so -- rather than updating the existing logcontext -- means that
|
|
|
|
# creating several concurrent spans under the same logcontext works
|
|
|
|
# correctly.
|
2019-07-11 05:36:03 -04:00
|
|
|
ctx = nested_logging_context("")
|
|
|
|
enter_logcontext = True
|
2022-02-02 17:41:57 -05:00
|
|
|
else:
|
|
|
|
# if there is no span currently associated with the current logcontext, we
|
|
|
|
# just store the scope in it.
|
|
|
|
#
|
|
|
|
# This feels a bit dubious, but it does hack around a problem where a
|
|
|
|
# span outlasts its parent logcontext (which would otherwise lead to
|
|
|
|
# "Re-starting finished log context" errors).
|
|
|
|
enter_logcontext = False
|
2019-07-11 05:36:03 -04:00
|
|
|
|
|
|
|
scope = _LogContextScope(self, span, ctx, enter_logcontext, finish_on_close)
|
|
|
|
ctx.scope = scope
|
2022-02-02 17:41:57 -05:00
|
|
|
if enter_logcontext:
|
|
|
|
ctx.__enter__()
|
|
|
|
|
2019-07-11 05:36:03 -04:00
|
|
|
return scope
|
|
|
|
|
|
|
|
|
|
|
|
class _LogContextScope(Scope):
|
|
|
|
"""
|
2022-02-02 17:41:57 -05:00
|
|
|
A custom opentracing scope, associated with a LogContext
|
|
|
|
|
|
|
|
* filters out _DefGen_Return exceptions which arise from calling
|
|
|
|
`defer.returnValue` in Twisted code
|
|
|
|
|
|
|
|
* When the scope is closed, the logcontext's active scope is reset to None.
|
|
|
|
and - if enter_logcontext was set - the logcontext is finished too.
|
2019-07-11 05:36:03 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, manager, span, logcontext, enter_logcontext, finish_on_close):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
manager (LogContextScopeManager):
|
|
|
|
the manager that is responsible for this scope.
|
|
|
|
span (Span):
|
|
|
|
the opentracing span which this scope represents the local
|
|
|
|
lifetime for.
|
|
|
|
logcontext (LogContext):
|
|
|
|
the logcontext to which this scope is attached.
|
|
|
|
enter_logcontext (Boolean):
|
2022-02-02 17:41:57 -05:00
|
|
|
if True the logcontext will be exited when the scope is finished
|
2019-07-11 05:36:03 -04:00
|
|
|
finish_on_close (Boolean):
|
|
|
|
if True finish the span when the scope is closed
|
|
|
|
"""
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(manager, span)
|
2019-07-11 05:36:03 -04:00
|
|
|
self.logcontext = logcontext
|
|
|
|
self._finish_on_close = finish_on_close
|
|
|
|
self._enter_logcontext = enter_logcontext
|
|
|
|
|
2022-02-02 17:41:57 -05:00
|
|
|
def __exit__(self, exc_type, value, traceback):
|
|
|
|
if exc_type == twisted.internet.defer._DefGen_Return:
|
|
|
|
# filter out defer.returnValue() calls
|
|
|
|
exc_type = value = traceback = None
|
|
|
|
super().__exit__(exc_type, value, traceback)
|
2019-07-11 05:36:03 -04:00
|
|
|
|
2022-02-02 17:41:57 -05:00
|
|
|
def __str__(self):
|
|
|
|
return f"Scope<{self.span}>"
|
2019-07-11 05:36:03 -04:00
|
|
|
|
|
|
|
def close(self):
|
2022-02-02 17:41:57 -05:00
|
|
|
active_scope = self.manager.active
|
|
|
|
if active_scope is not self:
|
|
|
|
logger.error(
|
|
|
|
"Closing scope %s which is not the currently-active one %s",
|
|
|
|
self,
|
|
|
|
active_scope,
|
|
|
|
)
|
2019-07-11 05:36:03 -04:00
|
|
|
|
|
|
|
if self._finish_on_close:
|
|
|
|
self.span.finish()
|
2022-02-02 17:41:57 -05:00
|
|
|
|
|
|
|
self.logcontext.scope = None
|
|
|
|
|
|
|
|
if self._enter_logcontext:
|
|
|
|
self.logcontext.__exit__(None, None, None)
|