mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
19 lines
425 B
Go
19 lines
425 B
Go
package prometheus
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
)
|
|
|
|
// RunSimpleServerOrDie is a blocking call to serve /metrics at the given
|
|
// address.
|
|
func RunSimpleServerOrDie(addr string) {
|
|
mux := http.NewServeMux()
|
|
mux.Handle("/metrics", promhttp.Handler())
|
|
|
|
svr := &http.Server{Addr: addr, Handler: mux, ReadHeaderTimeout: time.Second}
|
|
log.Fatal(svr.ListenAndServe())
|
|
}
|