mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"sync"
|
|
|
|
"github.com/luxfi/metric"
|
|
)
|
|
|
|
var errReregisterGatherer = errors.New("attempted to register a gatherer when one is already registered")
|
|
|
|
var _ OptionalGatherer = (*optionalGatherer)(nil)
|
|
|
|
// OptionalGatherer extends the Gatherer interface by allowing the optional
|
|
// registration of a single gatherer. If no gatherer is registered, Gather will
|
|
// return no metrics and no error. If a gatherer is registered, Gather will
|
|
// return the results of calling Gather on the provided gatherer.
|
|
type OptionalGatherer interface {
|
|
metric.Gatherer
|
|
|
|
// Register the provided gatherer. If a gatherer was previously registered,
|
|
// an error will be returned.
|
|
Register(gatherer metric.Gatherer) error
|
|
}
|
|
|
|
type optionalGatherer struct {
|
|
lock sync.RWMutex
|
|
gatherer metric.Gatherer
|
|
}
|
|
|
|
func NewOptionalGatherer() OptionalGatherer {
|
|
return &optionalGatherer{}
|
|
}
|
|
|
|
func (g *optionalGatherer) Gather() ([]*metric.MetricFamily, error) {
|
|
g.lock.RLock()
|
|
defer g.lock.RUnlock()
|
|
|
|
if g.gatherer == nil {
|
|
return nil, nil
|
|
}
|
|
return g.gatherer.Gather()
|
|
}
|
|
|
|
func (g *optionalGatherer) Register(gatherer metric.Gatherer) error {
|
|
g.lock.Lock()
|
|
defer g.lock.Unlock()
|
|
|
|
if g.gatherer != nil {
|
|
return fmt.Errorf("%w; existing: %#v; new: %#v",
|
|
errReregisterGatherer,
|
|
g.gatherer,
|
|
gatherer,
|
|
)
|
|
}
|
|
g.gatherer = gatherer
|
|
return nil
|
|
}
|