Don't copy lock when `range`ing over map
Make `go vet` happy.
This commit is contained in:
parent
c512c25c07
commit
747edb09bf
|
@ -74,7 +74,8 @@ func (r *Couchbase) gatherServer(addr string, acc telegraf.Accumulator) error {
|
|||
fields["memory_total"] = node.MemoryTotal
|
||||
acc.AddFields("couchbase_node", fields, tags)
|
||||
}
|
||||
for bucketName, bucket := range pool.BucketMap {
|
||||
for bucketName, _ := range pool.BucketMap {
|
||||
bucket := pool.BucketMap[bucketName]
|
||||
tags := map[string]string{"cluster": addr, "bucket": bucketName}
|
||||
acc.AddFields("couchbase_bucket", bucket.BasicStats, tags)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue