mirror of
https://github.com/status-im/status-go.git
synced 2025-01-11 15:14:52 +00:00
89d89681a3
It adds support for metrics (expvar and Prometheus) along with docker-compose files to run a Whisper test cluster.
11 lines
202 B
Go
11 lines
202 B
Go
// +build !metrics
|
|
|
|
package metrics
|
|
|
|
import "net/http"
|
|
|
|
// NewMetricsServer without metrics build flag does not start any metrics server.
|
|
func NewMetricsServer(addr string) *http.Server {
|
|
return nil
|
|
}
|