Use consistent buckets

This commit is contained in:
Erik Johnston 2019-06-18 12:43:41 +01:00
parent 4c4877bbc1
commit c9385dd238

View file

@ -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"),
)