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

@ -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
}

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

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

Loading…
Cancel
Save