diff options
| author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-11-10 19:52:32 +0100 | 
|---|---|---|
| committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-11-10 19:52:32 +0100 | 
| commit | 998b68425f2c5e09ac37d864dfc3ead2b7163e09 (patch) | |
| tree | 931d4009e50752d7eb05154e42cf0459312c65df | |
| parent | f578f9fa42a45454b0c3c579ea30d79bf948d859 (diff) | |
replaced sync.Once with init()
| -rw-r--r-- | instance.go | 1 | ||||
| -rw-r--r-- | metric.go | 5 | 
2 files changed, 1 insertions, 5 deletions
| diff --git a/instance.go b/instance.go index baff329..7a353fe 100644 --- a/instance.go +++ b/instance.go @@ -56,7 +56,6 @@ func NewInstance(lp *LogParameters, client trillian.TrillianLogClient, deadline  		Deadline:      deadline,  	}  	i.registerHandlers(mux) -	once.Do(metricSetup)  	return i, nil  } @@ -1,14 +1,11 @@  package stfe  import ( -	"sync" -  	"github.com/google/trillian/monitoring"  	"github.com/google/trillian/monitoring/prometheus"  )  var ( -	once             sync.Once  	reqcnt           monitoring.Counter   // number of incoming http requests  	rspcnt           monitoring.Counter   // number of valid http responses  	latency          monitoring.Histogram // request-response latency @@ -17,7 +14,7 @@ var (  	lastSthSize      monitoring.Gauge     // tree size of most recent sth  ) -func metricSetup() { +func init() {  	mf := prometheus.MetricFactory{}  	reqcnt = mf.NewCounter("http_req", "number of http requests", "logid", "endpoint")  	rspcnt = mf.NewCounter("http_rsp", "number of http requests", "logid", "endpoint", "status") | 
