fix golint issues in core/metric (#499)

This commit is contained in:
Kevin Wan
2021-02-21 21:18:07 +08:00
committed by GitHub
parent 8872d7cbd3
commit e7c9ef16fe
4 changed files with 18 additions and 3 deletions

View File

@@ -6,11 +6,16 @@ import (
)
type (
// GaugeVecOpts is an alias of VectorOpts.
GaugeVecOpts VectorOpts
GuageVec interface {
// GaugeVec represents a guage vector.
GaugeVec interface {
// Set sets v to labels.
Set(v float64, labels ...string)
// Inc increments labels.
Inc(labels ...string)
// Add adds v to labels.
Add(v float64, labels ...string)
close() bool
}
@@ -20,7 +25,8 @@ type (
}
)
func NewGaugeVec(cfg *GaugeVecOpts) GuageVec {
// NewGaugeVec returns a GaugeVec.
func NewGaugeVec(cfg *GaugeVecOpts) GaugeVec {
if cfg == nil {
return nil
}