fix golint issues in core/metric (#499)

master
Kevin Wan 4 years ago committed by GitHub
parent 8872d7cbd3
commit e7c9ef16fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,10 +6,14 @@ import (
) )
type ( type (
// A CounterVecOpts is an alias of VectorOpts.
CounterVecOpts VectorOpts CounterVecOpts VectorOpts
// CounterVec interface represents a counter vector.
CounterVec interface { CounterVec interface {
// Inc increments labels.
Inc(lables ...string) Inc(lables ...string)
// Add adds labels with v.
Add(v float64, labels ...string) Add(v float64, labels ...string)
close() bool close() bool
} }
@ -19,6 +23,7 @@ type (
} }
) )
// NewCounterVec returns a CounterVec.
func NewCounterVec(cfg *CounterVecOpts) CounterVec { func NewCounterVec(cfg *CounterVecOpts) CounterVec {
if cfg == nil { if cfg == nil {
return nil return nil

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

@ -6,6 +6,7 @@ import (
) )
type ( type (
// A HistogramVecOpts is a histogram vector options.
HistogramVecOpts struct { HistogramVecOpts struct {
Namespace string Namespace string
Subsystem string Subsystem string
@ -15,7 +16,9 @@ type (
Buckets []float64 Buckets []float64
} }
// A HistogramVec interface represents a histogram vector.
HistogramVec interface { HistogramVec interface {
// Observe adds observation v to labels.
Observe(v int64, lables ...string) Observe(v int64, lables ...string)
close() bool close() bool
} }
@ -25,6 +28,7 @@ type (
} }
) )
// NewHistogramVec returns a HistogramVec.
func NewHistogramVec(cfg *HistogramVecOpts) HistogramVec { func NewHistogramVec(cfg *HistogramVecOpts) HistogramVec {
if cfg == nil { if cfg == nil {
return nil return nil

@ -1,6 +1,6 @@
package metric package metric
// VectorOpts general configuration // A VectorOpts is a general configuration.
type VectorOpts struct { type VectorOpts struct {
Namespace string Namespace string
Subsystem string Subsystem string

Loading…
Cancel
Save