From 2ba0a7ed3ce279b92a1c24a3481ebea25d585d56 Mon Sep 17 00:00:00 2001 From: Viljami Pietarila Date: Wed, 21 Feb 2024 09:49:30 +0200 Subject: [PATCH] Add bucket for 1xx responses --- milliseconds.py | 1 + 1 file changed, 1 insertion(+) diff --git a/milliseconds.py b/milliseconds.py index e20bfe2..23e61c5 100755 --- a/milliseconds.py +++ b/milliseconds.py @@ -59,6 +59,7 @@ def get_top_10(result_type, result_type_dict): 'cache_hit': dict(bucket), 'cache_miss': dict(bucket), 'cache_other': dict(bucket), + '1xx': dict(bucket), '2xx': dict(bucket), '3xx': dict(bucket), '4xx': dict(bucket),