mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
6345b60ed8
Currently, the Travis chart displays "time" as the y-label of the graph, when in fact the unit is in minutes. (makes this consistent with other y-labels being "seconds") |
||
---|---|---|
.. | ||
all_benchmark.html | ||
app.js | ||
app_test.js | ||
index.html | ||
README.md | ||
style.css |
About benchmark data
The benchmark chart supposes //website/data.json
has the type
BenchmarkData[]
where BenchmarkData
is defined like the below:
interface ExecTimeData {
mean: number;
stddev: number;
user: number;
system: number;
min: number;
max: number;
}
interface BenchmarkData {
created_at: string;
sha1: string;
benchmark: {
[key: string]: ExecTimeData;
};
binarySizeData: {
[key: string]: number;
};
threadCountData: {
[key: string]: number;
};
syscallCountData: {
[key: string]: number;
};
}