Skip to content
Snippets Groups Projects
Unverified Commit 9a60cd66 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

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.
parent 8d6c0dfb
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment