1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: Apache-2.0
10 "github.com/prometheus/client_golang/prometheus"
11 "github.com/prometheus/common/expfmt"
14 func GatherMetricsAsString(reg *prometheus.Registry) string {
15 buf := bytes.NewBuffer(nil)
16 enc := expfmt.NewEncoder(buf, expfmt.FmtText)
17 got, _ := reg.Gather()
18 for _, mf := range got {