diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-01-16 17:09:15 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-01-16 17:09:15 +0000 |
commit | 0f5d2cc37c3ce42b449e1b9cc6276d909232c4ad (patch) | |
tree | e3a40dbbd61e86d3d7e29a5ecdb72a91a4fe475c /synapse/http/site.py | |
parent | rework runInteraction in terms of runConnection (diff) | |
parent | Track db txn time in millisecs (diff) | |
download | synapse-0f5d2cc37c3ce42b449e1b9cc6276d909232c4ad.tar.xz |
Merge branch 'rav/db_txn_time_in_millis' into rav/track_db_scheduling
Diffstat (limited to 'synapse/http/site.py')
-rw-r--r-- | synapse/http/site.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/http/site.py b/synapse/http/site.py index cd1492b1c3..dc64f0f6f5 100644 --- a/synapse/http/site.py +++ b/synapse/http/site.py @@ -66,10 +66,10 @@ class SynapseRequest(Request): context = LoggingContext.current_context() ru_utime, ru_stime = context.get_resource_usage() db_txn_count = context.db_txn_count - db_txn_duration = context.db_txn_duration + db_txn_duration_ms = context.db_txn_duration_ms except Exception: ru_utime, ru_stime = (0, 0) - db_txn_count, db_txn_duration = (0, 0) + db_txn_count, db_txn_duration_ms = (0, 0) self.site.access_logger.info( "%s - %s - {%s}" @@ -81,7 +81,7 @@ class SynapseRequest(Request): int(time.time() * 1000) - self.start_time, int(ru_utime * 1000), int(ru_stime * 1000), - int(db_txn_duration * 1000), + db_txn_duration_ms, int(db_txn_count), self.sentLength, self.code, |