mirror of
https://github.com/status-im/status-go.git
synced 2025-01-28 07:27:00 +00:00
14 lines
275 B
Go
14 lines
275 B
Go
|
// +build metrics,!prometheus
|
||
|
|
||
|
package metrics
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
// NewMetricsServer starts a new HTTP server with expvar handler.
|
||
|
// By default, "/debug/vars" handler is registered.
|
||
|
func NewMetricsServer(addr string) *http.Server {
|
||
|
return &http.Server{Addr: addr}
|
||
|
}
|