mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
a4cfbe0d56
This is an update of: https://github.com/ledgerwatch/erigon/pull/7846 which uses a local fork of victoria metrics to include the changes that https://github.com/anshalshukla added to the original for we where using. It also includes code to address the duplicate metrics issue identified here: https://github.com/ledgerwatch/erigon/issues/8053 It has one more associated fix which is to correctly add a metadata label to counters, these where previously labelled as gauges. e.g. ``` # TYPE p2p_peers counter p2p_peers 0 ``` rather than ``` # TYPE p2p_peers gauge p2p_peers 0 ``` --------- Co-authored-by: Anshal Shukla <53994948+anshalshukla@users.noreply.github.com> Co-authored-by: Anshal Shukla <shukla.anshal85@gmail.com>
24 lines
517 B
Go
24 lines
517 B
Go
package diagnostics
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
func SetupFlagsAccess(ctx *cli.Context, metricsMux *http.ServeMux) {
|
|
metricsMux.HandleFunc("/debug/metrics/flags", func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Access-Control-Allow-Origin", "*")
|
|
writeFlags(w, ctx)
|
|
})
|
|
}
|
|
|
|
func writeFlags(w io.Writer, ctx *cli.Context) {
|
|
fmt.Fprintf(w, "SUCCESS\n")
|
|
for _, flagName := range ctx.FlagNames() {
|
|
fmt.Fprintf(w, "%s=%v\n", flagName, ctx.Value(flagName))
|
|
}
|
|
}
|