diff options
| author | Luca Casonato <luca.casonato@antipy.com> | 2019-09-11 22:09:58 +0200 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-11 16:09:58 -0400 |
| commit | f38bd45bf98cf5a642e2b89b4b7369548025995d (patch) | |
| tree | 2eb3912600b18b03af9e20ef75a997fe2fb1f2ea /website/benchmarks.html | |
| parent | a1976236d97c12ee2ba305d5a1cf435d16dd0c2e (diff) | |
Added normalized benchmark graphs (#2919)
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> |
