aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-10-23 14:58:19 +0100
committerChristopher Baines <mail@cbaines.net>2020-10-23 15:40:10 +0100
commit4b8acf715dd806f9034e7c7a073e6b49301985d3 (patch)
tree720f5739e834eaa87d9c62e262ef20648e585c32
parentbdaaa6b3e454d9e91c6d9384763e8c53d5e12fe2 (diff)
downloadguix-4b8acf715dd806f9034e7c7a073e6b49301985d3.tar
guix-4b8acf715dd806f9034e7c7a073e6b49301985d3.tar.gz
services: guix: Fix the guix-build-coordinator metrics namespace.
The underscore is now handled in the guile prometheus library. * gnu/services/guix.scm (make-guix-build-coordinator-start-script): Remove the underscore from the end of the metrics namespace.
-rw-r--r--gnu/services/guix.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/services/guix.scm b/gnu/services/guix.scm
index 4afe02792f..87f00338da 100644
--- a/gnu/services/guix.scm
+++ b/gnu/services/guix.scm
@@ -207,7 +207,7 @@
(current-filename))
(let* ((metrics-registry (make-metrics-registry
#:namespace
- "guixbuildcoordinator_"))
+ "guixbuildcoordinator"))
(datastore (database-uri->datastore
#$database-uri-string
#:metrics-registry metrics-registry))