mirror of
https://github.com/golang/go
synced 2024-11-06 08:16:11 -07:00
7667e13ae9
Modifies the various Subscriber signatures to take in an "at" time.Time field, which captures the time that a measurement was made. This field will then be used when exporting points as their EndTime. Fixes #34490. Change-Id: I9e87b65e374876ae3d4df0abedb64bb7dcb221b6 Reviewed-on: https://go-review.googlesource.com/c/tools/+/199577 Run-TryBot: Emmanuel Odeke <emm.odeke@gmail.com> Reviewed-by: Ian Cottrell <iancottrell@google.com>
102 lines
3.2 KiB
Go
102 lines
3.2 KiB
Go
// Copyright 2019 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package stats provides support for recording telemetry statistics.
|
|
// It acts as a coordination point between things that want to record stats,
|
|
// and things that want to aggregate and report stats.
|
|
package stats
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"golang.org/x/tools/internal/telemetry/unit"
|
|
)
|
|
|
|
// Int64Measure is used to record integer values.
|
|
type Int64Measure struct {
|
|
name string
|
|
description string
|
|
unit unit.Unit
|
|
subscribers []Int64Subscriber
|
|
}
|
|
|
|
// Int64Measure is used to record floating point values.
|
|
type Float64Measure struct {
|
|
name string
|
|
description string
|
|
unit unit.Unit
|
|
subscribers []Float64Subscriber
|
|
}
|
|
|
|
// Int64Subscriber is the type for functions that want to listen to
|
|
// integer statistic events.
|
|
type Int64Subscriber func(ctx context.Context, im *Int64Measure, value int64, at time.Time)
|
|
|
|
// Float64Subscriber is the type for functions that want to listen to
|
|
// floating point statistic events.
|
|
type Float64Subscriber func(ctx context.Context, fm *Float64Measure, value float64, at time.Time)
|
|
|
|
// Int64 creates a new Int64Measure and prepares it for use.
|
|
func Int64(name string, description string, unit unit.Unit) *Int64Measure {
|
|
return &Int64Measure{
|
|
name: name,
|
|
description: description,
|
|
unit: unit,
|
|
}
|
|
}
|
|
|
|
// Float64 creates a new Float64Measure and prepares it for use.
|
|
func Float64(name string, description string, unit unit.Unit) *Float64Measure {
|
|
return &Float64Measure{
|
|
name: name,
|
|
description: description,
|
|
unit: unit,
|
|
}
|
|
}
|
|
|
|
// Name returns the name this measure was given on construction.
|
|
func (m *Int64Measure) Name() string { return m.name }
|
|
|
|
// Description returns the description this measure was given on construction.
|
|
func (m *Int64Measure) Description() string { return m.description }
|
|
|
|
// Unit returns the units this measure was given on construction.
|
|
func (m *Int64Measure) Unit() unit.Unit { return m.unit }
|
|
|
|
// Subscribe adds a new subscriber to this measure.
|
|
func (m *Int64Measure) Subscribe(s Int64Subscriber) { m.subscribers = append(m.subscribers, s) }
|
|
|
|
// Record delivers a new value to the subscribers of this measure.
|
|
func (m *Int64Measure) Record(ctx context.Context, value int64) {
|
|
at := time.Now()
|
|
do(func() {
|
|
for _, s := range m.subscribers {
|
|
s(ctx, m, value, at)
|
|
}
|
|
})
|
|
}
|
|
|
|
// Name returns the name this measure was given on construction.
|
|
func (m *Float64Measure) Name() string { return m.name }
|
|
|
|
// Description returns the description this measure was given on construction.
|
|
func (m *Float64Measure) Description() string { return m.description }
|
|
|
|
// Unit returns the units this measure was given on construction.
|
|
func (m *Float64Measure) Unit() unit.Unit { return m.unit }
|
|
|
|
// Subscribe adds a new subscriber to this measure.
|
|
func (m *Float64Measure) Subscribe(s Float64Subscriber) { m.subscribers = append(m.subscribers, s) }
|
|
|
|
// Record delivers a new value to the subscribers of this measure.
|
|
func (m *Float64Measure) Record(ctx context.Context, value float64) {
|
|
at := time.Now()
|
|
do(func() {
|
|
for _, s := range m.subscribers {
|
|
s(ctx, m, value, at)
|
|
}
|
|
})
|
|
}
|