summary refs log tree commit diff
path: root/synapse/event_auth.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-09-30Add an improved "forward extremities" metricRichard van der Hoff1-2/+25
Hopefully, N(extremities) * N(state_events) is a more realistic approximation to "how big a problem is this room?".
2020-09-30Rewrite BucketCollectorRichard van der Hoff3-71/+89
This was a bit unweildy for what I wanted: in particular, I wanted to assign each measurement straight into a bucket, rather than storing an intermediate Counter which didn't do any bucketing at all. I've replaced it with something that is hopefully a bi