diff options
Diffstat (limited to 'website/benchmarks.html')
-rw-r--r-- | website/benchmarks.html | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/website/benchmarks.html b/website/benchmarks.html index 68e1fa57d..a8d480780 100644 --- a/website/benchmarks.html +++ b/website/benchmarks.html @@ -102,6 +102,11 @@ <div id="req-per-sec-chart"></div> + <div id="normalized-req-per-sec-chart"></div> + + <input type="checkbox" id="req-per-sec-chart-show-normalized" /> + <label for="req-per-sec-chart-show-normalized">Show Normalized</label> + <h3 id="proxy-req-per-sec"> Proxy Req/Sec <a href="#proxy-eq-per-sec">#</a> </h3> @@ -151,6 +156,13 @@ <div id="proxy-req-per-sec-chart"></div> + <div id="normalized-proxy-req-per-sec-chart"></div> + + <input type="checkbox" id="proxy-req-per-sec-chart-show-normalized" /> + <label for="proxy-req-per-sec-chart-show-normalized" + >Show Normalized</label + > + <h3 id="max-latency">Max Latency <a href="#max-latency">#</a></h3> <p> @@ -234,17 +246,11 @@ <ul> <li> - <a - href="https://deno.land/std/http/file_server.ts" - >file_server</a - > + <a href="https://deno.land/std/http/file_server.ts">file_server</a> </li> <li> - <a - href="https://deno.land/std/examples/gist.ts" - >gist</a - > + <a href="https://deno.land/std/examples/gist.ts">gist</a> </li> </ul> @@ -257,7 +263,7 @@ <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js"></script> <script src="app.bundle.js"></script> <script> - requirejs(['app'], (app) => app.main()); + requirejs(["app"], app => app.main()); </script> </body> </html> |