diff --git a/app/PrometheusExporter.php b/app/PrometheusExporter.php
index a4b89177b721cadbd83b21d454a3c5af7ef8f26e..a709bf35a1846c671b65fe8607d1acda613061ca 100644
--- a/app/PrometheusExporter.php
+++ b/app/PrometheusExporter.php
@@ -43,7 +43,7 @@ class PrometheusExporter
     public static function Duration($duration, $type)
     {
         $registry = \Prometheus\CollectorRegistry::getDefault();
-        $histogram = $registry->getOrRegisterHistogram('metager', 'request_time', 'Loading Times for different cases', ['type'], [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.2, 2.4, 2.6, 2.8, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20]);
+        $histogram = $registry->getOrRegisterHistogram('metager', 'request_time', 'Loading Times for different cases', ['type'], [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.2, 2.4, 2.6, 2.8, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 15.0, 20.0]);
         $histogram->observe($duration, [$type]);
     }
 }