diff --git a/public/dispatch.php b/public/dispatch.php
index a1090bf..bbd6354 100644
--- a/public/dispatch.php
+++ b/public/dispatch.php
@@ -20,6 +20,8 @@ require_once($config_path."/init/boot.php");
// initialize zynapse
Zynapse::init();
-echo "
\n
\nboot time: ".number_format(microtime(true) - $start, 6)." seconds
\n";
+$time = number_format(microtime(true) - $start, 6);
+echo "
\n
\nboot time: ".$time." seconds
\n";
+echo "reqs/second: ".round(1 / $time)."
\n";
?>
\ No newline at end of file