diff --git a/src/common/method_wrappers/Decorator.py b/src/common/method_wrappers/Decorator.py
index c5cbfb5659df7697de93a99da39a228d5df04001..e0b078745b20a60b477689408972ebebb4970fbe 100644
--- a/src/common/method_wrappers/Decorator.py
+++ b/src/common/method_wrappers/Decorator.py
@@ -34,10 +34,17 @@ METRIC_TO_CLASS_PARAMS = {
     MetricTypeEnum.HISTOGRAM_DURATION: (Histogram, {
         'buckets': (
             # .005, .01, .025, .05, .075, .1, .25, .5, .75, 1.0, INF
-            0.0010, 0.0025, 0.0050, 0.0075,
-            0.0100, 0.0250, 0.0500, 0.0750,
-            0.1000, 0.2500, 0.5000, 0.7500,
-            1.0000, 2.5000, 5.0000, 7.5000,
+            #0.0010, 0.0025, 0.0050, 0.0075,
+            #0.0100, 0.0250, 0.0500, 0.0750,
+            #0.1000, 0.2500, 0.5000, 0.7500,
+            #1.0000, 2.5000, 5.0000, 7.5000,
+            0.00010, 0.00020, 0.00030, 0.00040, 0.00050, 0.00060, 0.00070, 0.00080, 0.00090,
+            0.00100, 0.00200, 0.00300, 0.00400, 0.00500, 0.00600, 0.00700, 0.00800, 0.00900,
+            0.01000, 0.02000, 0.03000, 0.04000, 0.05000, 0.06000, 0.07000, 0.08000, 0.09000,
+            0.10000, 0.20000, 0.30000, 0.40000, 0.50000, 0.60000, 0.70000, 0.80000, 0.90000,
+            1.00000, 2.00000, 3.00000, 4.00000, 5.00000, 6.00000, 7.00000, 8.00000, 9.00000,
+            10.0000, 20.0000, 30.0000, 40.0000, 50.0000, 60.0000, 70.0000, 80.0000, 90.0000,
+            100.000, 200.000, 300.000, 400.000, 500.000, 600.000, 700.000, 800.000, 900.000,
             INF)
     })
 }