diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-25 04:28:56 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-25 13:13:09 -0400 |
| commit | 1956d6846c0ef716455f3cf6b1d5caa6cee09a08 (patch) | |
| tree | 34f8f499e82b7eb02cd23c9ebc6950c3fabc0b53 /website/app.js | |
| parent | 3c24b9f724287d2ca722e61a395ad9c93b7551c6 (diff) | |
Also plot cold start time.
Diffstat (limited to 'website/app.js')
| -rw-r--r-- | website/app.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/website/app.js b/website/app.js index ba8dbac36..ab9dbb8a4 100644 --- a/website/app.js +++ b/website/app.js @@ -4,7 +4,12 @@ export async function getJson(path) { return (await fetch(path)).json(); } -const benchmarkNames = ["hello", "relative_import"]; +const benchmarkNames = [ + "hello", + "relative_import", + "cold_hello", + "cold_relative_import" +]; export function createExecTimeColumns(data) { return benchmarkNames.map(name => [ name, |
