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.
This commit is contained in:
Christopher Baines 2020-10-23 14:58:19 +01:00
parent bdaaa6b3e4
commit 4b8acf715d
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -207,7 +207,7 @@ (define* (make-guix-build-coordinator-start-script database-uri-string
(current-filename))
(let* ((metrics-registry (make-metrics-registry
#:namespace
"guixbuildcoordinator_"))
"guixbuildcoordinator"))
(datastore (database-uri->datastore
#$database-uri-string
#:metrics-registry metrics-registry))