summary refs log tree commit diff
path: root/synapse/state
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-06-18 12:43:41 +0100
committerErik Johnston <erik@matrix.org>2019-06-18 12:43:41 +0100
commitc9385dd23874261dd8f01da1d659afa33f552a83 (patch)
tree002112a03ec8a5d60da2a3c1e4bfed4b72d8a4cd /synapse/state
parentNewsfile (diff)
downloadsynapse-c9385dd23874261dd8f01da1d659afa33f552a83.tar.xz
Use consistent buckets
Diffstat (limited to 'synapse/state')
-rw-r--r--synapse/state/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/state/__init__.py b/synapse/state/__init__.py
index 3415a34367..8099297cfe 100644
--- a/synapse/state/__init__.py
+++ b/synapse/state/__init__.py
@@ -41,7 +41,7 @@ logger = logging.getLogger(__name__)
 # Metrics for number of state groups involved in a resolution.
 state_groups_histogram = Histogram(
     "synapse_state_number_state_groups", "",
-    buckets=(0, 1, 2, 3, 5, 7, 10, 20, 50, 100, "+Inf"),
+    buckets=(0, 1, 2, 3, 5, 7, 10, 15, 20, 50, 100, 200, 500, "+Inf"),
 )