Skip to content
Snippets Groups Projects
Commit e75fa8bb authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Bugfix to sql_txn_timer increment - add only the per-TXN duration, not the...

Bugfix to sql_txn_timer increment - add only the per-TXN duration, not the total time ever spent since boot
parent c782e893
No related branches found
No related tags found
No related merge requests found
...@@ -260,15 +260,13 @@ class SQLBaseStore(object): ...@@ -260,15 +260,13 @@ class SQLBaseStore(object):
raise raise
finally: finally:
end = time.time() * 1000 end = time.time() * 1000
transaction_logger.debug( duration = end - start
"[TXN END] {%s} %f",
name, end - start
)
self._current_txn_total_time += end - start transaction_logger.debug("[TXN END] {%s} %f", name, duration)
self._txn_perf_counters.update(desc, start, end)
sql_txn_timer.inc_by(self._current_txn_total_time, desc) self._current_txn_total_time += duration
self._txn_perf_counters.update(desc, start, end)
sql_txn_timer.inc_by(duration, desc)
with PreserveLoggingContext(): with PreserveLoggingContext():
result = yield self._db_pool.runInteraction( result = yield self._db_pool.runInteraction(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment