branch: master
commit 89f0dbc8e19ec14a804f540213643858e7055b66
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Thu Sep 17 10:30:49 2020 +0200

    metrics: Add graph legends.
    
    * src/cuirass/templates.scm (global-metrics-content): Add legends.
---
 src/cuirass/templates.scm | 10 ++++++++++
 1 file changed, 10 insertions(+)

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.")

Reply via email to