mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-10 20:11:32 +01:00
Improve logging of replication (#16309)
This commit is contained in:
parent
48387c56f1
commit
ab13fb08bf
3 changed files with 8 additions and 2 deletions
1
changelog.d/16309.misc
Normal file
1
changelog.d/16309.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Small improvements to logging in replication code.
|
|
@ -191,7 +191,12 @@ class ReplicationStreamer:
|
||||||
|
|
||||||
if updates:
|
if updates:
|
||||||
logger.info(
|
logger.info(
|
||||||
"Streaming: %s -> %s", stream.NAME, updates[-1][0]
|
"Streaming: %s -> %s (limited: %s, updates: %s, max token: %s)",
|
||||||
|
stream.NAME,
|
||||||
|
updates[-1][0],
|
||||||
|
limited,
|
||||||
|
len(updates),
|
||||||
|
current_token,
|
||||||
)
|
)
|
||||||
stream_updates_counter.labels(stream.NAME).inc(len(updates))
|
stream_updates_counter.labels(stream.NAME).inc(len(updates))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue