[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: metrics: Order evaluation metrics by ascending ev
From: |
Mathieu Othacehe |
Subject: |
branch master updated: metrics: Order evaluation metrics by ascending evaluation id. |
Date: |
Thu, 17 Sep 2020 10:11:24 -0400 |
This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository guix-cuirass.
The following commit(s) were added to refs/heads/master by this push:
new 9a60cd6 metrics: Order evaluation metrics by ascending evaluation id.
9a60cd6 is described below
commit 9a60cd6619df1bf1781dc47fbcc05c14994473fb
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Thu Sep 17 16:10:07 2020 +0200
metrics: Order evaluation metrics by ascending evaluation id.
* src/cuirass/http.scm (metrics-page): Order 'average-eval-build-start-time
and 'evaluation-completion-speed metrics per ascending evaluation id.
---
src/cuirass/http.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm
index a58fef3..6b13138 100644
--- a/src/cuirass/http.scm
+++ b/src/cuirass/http.scm
@@ -249,13 +249,15 @@ Hydra format."
'average-eval-duration-per-spec))
#:avg-eval-build-start-time
(db-get-metrics-with-id 'average-eval-build-start-time
- #:limit 100)
+ #:limit 100
+ #:order "field ASC")
#:builds-per-day
(db-get-metrics-with-id 'builds-per-day
#:limit 100)
#:eval-completion-speed
(db-get-metrics-with-id 'evaluation-completion-speed
- #:limit 100)
+ #:limit 100
+ #:order "field ASC")
#:new-derivations-per-day
(db-get-metrics-with-id 'new-derivations-per-day
#:limit 100)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: metrics: Order evaluation metrics by ascending evaluation id.,
Mathieu Othacehe <=