Commit ef61af91 authored by Jérome Perrin's avatar Jérome Perrin

Exit stat: use more meaningful names for some metrics

parent 92a6fa56
...@@ -553,6 +553,10 @@ ...@@ -553,6 +553,10 @@
if (typeof value == "number") { if (typeof value == "number") {
value = value.toFixed(2) value = value.toFixed(2)
} }
// Rename some metric to something more meaningful
if (metric == "lifespan" ){
metric = "Cycle Time"
}
text += "<tr><td>" + metric + "</td><td>" + value + "</td></tr>"; text += "<tr><td>" + metric + "</td><td>" + value + "</td></tr>";
} }
}) })
......
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