mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Merge pull request #3590 from matrix-org/rav/persist_events_metrics
Add some measure blocks to persist_events
This commit is contained in:
commit
2601ee28bd
1
changelog.d/3590.misc
Normal file
1
changelog.d/3590.misc
Normal file
@ -0,0 +1 @@
|
||||
Add some measure blocks to persist_events
|
@ -417,14 +417,24 @@ class EventsStore(EventsWorkerStore):
|
||||
logger.info(
|
||||
"Calculating state delta for room %s", room_id,
|
||||
)
|
||||
|
||||
with Measure(
|
||||
self._clock,
|
||||
"persist_events.get_new_state_after_events",
|
||||
):
|
||||
current_state = yield self._get_new_state_after_events(
|
||||
room_id,
|
||||
ev_ctx_rm,
|
||||
latest_event_ids,
|
||||
new_latest_event_ids,
|
||||
)
|
||||
|
||||
if current_state is not None:
|
||||
current_state_for_room[room_id] = current_state
|
||||
with Measure(
|
||||
self._clock,
|
||||
"persist_events.calculate_state_delta",
|
||||
):
|
||||
delta = yield self._calculate_state_delta(
|
||||
room_id, current_state,
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user