Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Track the cpu used in the main thread by each logging context #420

Merged
merged 3 commits into from
Dec 4, 2015
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion synapse/app/homeserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,13 +499,23 @@ def started_processing(self):
self.start_time = int(time.time() * 1000)

def finished_processing(self):

try:
context = LoggingContext.current_context()
ru_utime, ru_stime = context.get_resource_usage()
except:
ru_utime, ru_stime = (0, 0)

self.site.access_logger.info(
"%s - %s - {%s}"
" Processed request: %dms %sB %s \"%s %s %s\" \"%s\"",
" Processed request: %dms (%dms, %dms)"
" %sB %s \"%s %s %s\" \"%s\"",
self.getClientIP(),
self.site.site_tag,
self.authenticated_entity,
int(time.time() * 1000) - self.start_time,
int(ru_utime * 1000),
int(ru_stime * 1000),
self.sentLength,
self.code,
self.method,
Expand Down
3 changes: 1 addition & 2 deletions synapse/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ def call_later(self, delay, callback, *args, **kwargs):
current_context = LoggingContext.current_context()

def wrapped_callback(*args, **kwargs):
with PreserveLoggingContext():
LoggingContext.thread_local.current_context = current_context
with PreserveLoggingContext(current_context):
callback(*args, **kwargs)

with PreserveLoggingContext():
Expand Down
3 changes: 1 addition & 2 deletions synapse/util/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ def with_logging_context(fn):
context = LoggingContext.current_context()

def restore_context_callback(x):
with PreserveLoggingContext():
LoggingContext.thread_local.current_context = context
with PreserveLoggingContext(context):
return fn(x)

return restore_context_callback
Expand Down
76 changes: 70 additions & 6 deletions synapse/util/logcontext.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@

logger = logging.getLogger(__name__)

try:
import resource
RUSAGE_THREAD = 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed 5231737

resource.getrusage(RUSAGE_THREAD)

def get_thread_resource_usage():
return resource.getrusage(RUSAGE_THREAD)
except:
def get_thread_resource_usage():
return None


class LoggingContext(object):
"""Additional context for log formatting. Contexts are scoped within a
Expand All @@ -27,7 +38,9 @@ class LoggingContext(object):
name (str): Name for the context for debugging.
"""

__slots__ = ["parent_context", "name", "__dict__"]
__slots__ = [
"parent_context", "name", "usage_start", "usage_end", "main_thread", "__dict__"
]

thread_local = threading.local()

Expand All @@ -42,11 +55,21 @@ def __str__(self):
def copy_to(self, record):
pass

def start(self):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you need these start and stop functions?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So that I don't need to check if the context is the sentinel when using the functions.

pass

def stop(self):
pass

sentinel = Sentinel()

def __init__(self, name=None):
self.parent_context = None
self.name = name
self.ru_stime = 0.
self.ru_utime = 0.
self.usage_start = None
self.main_thread = threading.current_thread()

def __str__(self):
return "%s@%x" % (self.name, id(self))
Expand All @@ -62,6 +85,7 @@ def __enter__(self):
raise Exception("Attempt to enter logging context multiple times")
self.parent_context = self.current_context()
self.thread_local.current_context = self
self.start()
return self

def __exit__(self, type, value, traceback):
Expand All @@ -80,6 +104,7 @@ def __exit__(self, type, value, traceback):
self
)
self.thread_local.current_context = self.parent_context
self.stop()
self.parent_context = None

def __getattr__(self, name):
Expand All @@ -93,6 +118,39 @@ def copy_to(self, record):
for key, value in self.__dict__.items():
setattr(record, key, value)

record.ru_utime, record.ru_stime = self.get_resource_usage()

def start(self):
if threading.current_thread() is not self.main_thread:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this an is check? (And below)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://docs.python.org/2/library/threading.html#threading.Thread
The wording makes it fairly clear that there is "a main thread object". So I'm fairly happy to use a "is same object" comparison here.

return

if self.usage_start and self.usage_end:
self.ru_utime += self.usage_end.ru_utime - self.usage_start.ru_utime
self.ru_stime += self.usage_end.ru_stime - self.usage_start.ru_stime
self.usage_start = None
self.usage_end = None

if not self.usage_start:
self.usage_start = get_thread_resource_usage()

def stop(self):
if threading.current_thread() is not self.main_thread:
return

if self.usage_start:
self.usage_end = get_thread_resource_usage()

def get_resource_usage(self):
ru_utime = self.ru_utime
ru_stime = self.ru_stime

if self.usage_start and threading.current_thread() is self.main_thread:
current = get_thread_resource_usage()
ru_utime += current.ru_utime - self.usage_start.ru_utime
ru_stime += current.ru_stime - self.usage_start.ru_stime

return ru_utime, ru_stime


class LoggingContextFilter(logging.Filter):
"""Logging filter that adds values from the current logging context to each
Expand Down Expand Up @@ -121,17 +179,24 @@ class PreserveLoggingContext(object):
exited. Used to restore the context after a function using
@defer.inlineCallbacks is resumed by a callback from the reactor."""

__slots__ = ["current_context"]
__slots__ = ["current_context", "new_context"]

def __init__(self, new_context=LoggingContext.sentinel):
self.new_context = new_context

def __enter__(self):
"""Captures the current logging context"""
self.current_context = LoggingContext.current_context()
LoggingContext.thread_local.current_context = LoggingContext.sentinel
if self.new_context is not self.current_context:
self.current_context.stop()
LoggingContext.thread_local.current_context = self.new_context

def __exit__(self, type, value, traceback):
"""Restores the current logging context"""
context = LoggingContext.thread_local.current_context
LoggingContext.thread_local.current_context = self.current_context

if context is not self.current_context:
self.current_context.start()
if self.current_context is not LoggingContext.sentinel:
if self.current_context.parent_context is None:
logger.warn(
Expand Down Expand Up @@ -164,8 +229,7 @@ def addCallbacks(self, callback, errback=None,

def _wrap_callback(self, f):
def g(res, *args, **kwargs):
with PreserveLoggingContext():
LoggingContext.thread_local.current_context = self._log_context
with PreserveLoggingContext(self._log_context):
res = f(res, *args, **kwargs)
return res
return g
Expand Down