From 78c76c4139a11e715f86fa7c36c1c1511a5825ef Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Fri, 16 Dec 2022 14:37:27 +0900 Subject: [PATCH] remove unused tags field from Client struct --- metric.go | 1 - 1 file changed, 1 deletion(-) diff --git a/metric.go b/metric.go index 2189dba..4fc0ca5 100644 --- a/metric.go +++ b/metric.go @@ -73,7 +73,6 @@ func NewMetric(name string, mtype string, tags []string) *Metric { type Client struct { Series []*Metric `json:"series"` // raw data hostname string // hostname - tags []string // global tags, if any metrics map[string]*Metric // map of name to metric for fast lookup histograms map[string]*ExactHistogram now func() float64 // for testing