diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-09-17 10:30:49 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-09-17 10:30:49 +0200 |
commit | 89f0dbc8e19ec14a804f540213643858e7055b66 (patch) | |
tree | a0a9692af3741e8a84634db4a9249b90a3cf7db4 /src | |
parent | 24924bb6008b7695b1cdb6e3a0003f9d4affd0cf (diff) | |
download | cuirass-89f0dbc8e19ec14a804f540213643858e7055b66.tar cuirass-89f0dbc8e19ec14a804f540213643858e7055b66.tar.gz |
metrics: Add graph legends.
* src/cuirass/templates.scm (global-metrics-content): Add legends.
Diffstat (limited to 'src')
-rw-r--r-- | src/cuirass/templates.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cuirass/templates.scm b/src/cuirass/templates.scm index e442078..799c9fd 100644 --- a/src/cuirass/templates.scm +++ b/src/cuirass/templates.scm @@ -945,15 +945,25 @@ window.~a = new Chart\ ,(apply map avg-eval-duration-row avg-eval-durations))) (br) (h6 "Build speed.") + (p "This shows the difference between newly added derivations and built +derivations per day.") (canvas (@ (id ,builds-chart))) (br) (h6 "Evaluation average build start time.") + (p "This is the average time required for an evaluation to start its +builds.") + (br) (canvas (@ (id ,build-start-chart))) (br) (h6 "Evaluation completion speed.") + (p "The evaluation completion speed is the sum of an evaluation +completed builds divided by the time required to build them.") + (br) (canvas (@ (id ,evaluation-speed-chart))) (br) (h6 "Pending builds.") + (p "This is the sum of all the currently pending builds.") + (br) (canvas (@ (id ,pending-builds-chart))) (br) (h6 "Percentage of failed evaluations.") |