Commit 9c72db07 authored by Jérome Perrin's avatar Jérome Perrin

Output_viewExitStatistics: enable metrics in the output

parent 31b846a3
......@@ -109,6 +109,10 @@
if (typeof metric_value === "number") {
metric_value = metric_value.toFixed(2);
}
// Add time unit in some metric
if (data.general.timeUnit && (metric === "lifespan" || metric === "takt_time")) {
metric_value = metric_value + " " + data.general.timeUnit;
}
// Rename some metric to something more meaningful
if (metric === "lifespan") {
metric = "Cycle Time";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment