Documentation ¶
Index ¶
- type Aggregator
- func (g *Aggregator) Checkpoint(ctx context.Context, _ *metric.Descriptor)
- func (g *Aggregator) LastValue() (core.Number, time.Time, error)
- func (g *Aggregator) Merge(oa export.Aggregator, desc *metric.Descriptor) error
- func (g *Aggregator) Update(_ context.Context, number core.Number, desc *metric.Descriptor) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Aggregator ¶
type Aggregator struct {
// contains filtered or unexported fields
}
Aggregator aggregates lastValue events.
func New ¶
func New() *Aggregator
New returns a new lastValue aggregator. This aggregator retains the last value and timestamp that were recorded.
func (*Aggregator) Checkpoint ¶
func (g *Aggregator) Checkpoint(ctx context.Context, _ *metric.Descriptor)
Checkpoint atomically saves the current value.
func (*Aggregator) LastValue ¶
LastValue returns the last-recorded lastValue value and the corresponding timestamp. The error value aggregator.ErrNoData will be returned if (due to a race condition) the checkpoint was computed before the first value was set.
func (*Aggregator) Merge ¶
func (g *Aggregator) Merge(oa export.Aggregator, desc *metric.Descriptor) error
Merge combines state from two aggregators. The most-recently set value is chosen.
func (*Aggregator) Update ¶
func (g *Aggregator) Update(_ context.Context, number core.Number, desc *metric.Descriptor) error
Update atomically sets the current "last" value.
Click to show internal directories.
Click to hide internal directories.