diff options
author | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-28 14:28:44 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <olivier@librepush.net> | 2019-08-28 14:28:44 +0100 |
commit | bc2c284dbe02ef283ab525f14febd7d0998ba552 (patch) | |
tree | a77d917f8c8d08e7e7588117aa3f20f353f61e6c /synapse/storage/stats.py | |
parent | Merge pull request #5890 from matrix-org/rei/rss_inc3 (diff) | |
download | synapse-bc2c284dbe02ef283ab525f14febd7d0998ba552.tar.xz |
Add `total_event_bytes` to room statistics schema.
Signed-off-by: Olivier Wilkinson (reivilibre) <olivier@librepush.net>
Diffstat (limited to 'synapse/storage/stats.py')
-rw-r--r-- | synapse/storage/stats.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/storage/stats.py b/synapse/storage/stats.py index 3df57b52ea..8c99a125a9 100644 --- a/synapse/storage/stats.py +++ b/synapse/storage/stats.py @@ -36,6 +36,7 @@ ABSOLUTE_STATS_FIELDS = { "left_members", "banned_members", "total_events", + "total_event_bytes", ), "user": ("public_rooms", "private_rooms"), } |