mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 04:04:54 -04:00
Bugfix to sql_txn_timer increment - add only the per-TXN duration, not the total time ever spent since boot
This commit is contained in:
parent
c782e893ec
commit
e75fa8bbbf
1 changed files with 5 additions and 7 deletions
|
@ -260,15 +260,13 @@ class SQLBaseStore(object):
|
|||
raise
|
||||
finally:
|
||||
end = time.time() * 1000
|
||||
transaction_logger.debug(
|
||||
"[TXN END] {%s} %f",
|
||||
name, end - start
|
||||
)
|
||||
duration = end - start
|
||||
|
||||
self._current_txn_total_time += end - start
|
||||
transaction_logger.debug("[TXN END] {%s} %f", name, duration)
|
||||
|
||||
self._current_txn_total_time += duration
|
||||
self._txn_perf_counters.update(desc, start, end)
|
||||
|
||||
sql_txn_timer.inc_by(self._current_txn_total_time, desc)
|
||||
sql_txn_timer.inc_by(duration, desc)
|
||||
|
||||
with PreserveLoggingContext():
|
||||
result = yield self._db_pool.runInteraction(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue