Documentation
¶
Index ¶
- Variables
- func RunTestMain(m *testing.M) int
- type Counter
- func (c *Counter) Delta10m() int64
- func (c *Counter) Delta1h() int64
- func (c *Counter) Delta1m() int64
- func (c *Counter) Incr(delta int64)
- func (c *Counter) LastUpdate() time.Time
- func (c *Counter) Rate10m() float64
- func (c *Counter) Rate1h() float64
- func (c *Counter) Rate1m() float64
- func (c *Counter) Reset()
- func (c *Counter) Set(value int64)
- func (c *Counter) Value() int64
- type Histogram
- func (h *Histogram) Add(value int64) error
- func (h *Histogram) Delta10m() HistogramValue
- func (h *Histogram) Delta1h() HistogramValue
- func (h *Histogram) Delta1m() HistogramValue
- func (h *Histogram) LastUpdate() time.Time
- func (h *Histogram) Opts() HistogramOptions
- func (h *Histogram) Value() HistogramValue
- type HistogramBucket
- type HistogramOptions
- type HistogramValue
- type Stats
- type Tracker
- func (t *Tracker) LastUpdate() time.Time
- func (t *Tracker) Max() int64
- func (t *Tracker) Max10m() int64
- func (t *Tracker) Max1h() int64
- func (t *Tracker) Max1m() int64
- func (t *Tracker) Min() int64
- func (t *Tracker) Min10m() int64
- func (t *Tracker) Min1h() int64
- func (t *Tracker) Min1m() int64
- func (t *Tracker) Push(value int64)
- func (t *Tracker) Reset()
Constants ¶
This section is empty.
Variables ¶
Functions ¶
Types ¶
type Counter ¶
type Counter struct {
// contains filtered or unexported fields
}
Counter is a counter that keeps track of its recent values over a given period of time, and with a given resolution. Use newCounter() to instantiate.
func (*Counter) Delta10m ¶
Delta10m returns the delta for the last 10 minutes.
func (*Counter) Delta1h ¶
Delta1h returns the delta for the last hour.
func (*Counter) Delta1m ¶
Delta1m returns the delta for the last minute.
func (*Counter) Incr ¶
Incr increments the current value of the counter by 'delta'.
func (*Counter) LastUpdate ¶
LastUpdate returns the last update time of the counter.
func (*Counter) Rate10m ¶
Rate10m returns the rate of change of the counter in the last 10 minutes.
func (*Counter) Rate1h ¶
Rate1h returns the rate of change of the counter in the last hour.
func (*Counter) Rate1m ¶
Rate1m returns the rate of change of the counter in the last minute.
func (*Counter) Set ¶
Set updates the current value of the counter.
type Histogram ¶
type Histogram struct {
// contains filtered or unexported fields
}
A Histogram accumulates values in the form of a histogram. The type of the values is int64, which is suitable for keeping track of things like RPC latency in milliseconds. New histogram objects should be obtained via the New() function.
func NewHistogram ¶
func NewHistogram(opts HistogramOptions) *Histogram
NewHistogram returns a pointer to a new Histogram object that was created with the provided options.
func (*Histogram) Add ¶
Add adds a value to the histogram.
func (*Histogram) Delta10m ¶
func (h *Histogram) Delta10m() HistogramValue
Delta10m returns the change in the last 10 minutes.
func (*Histogram) Delta1h ¶
func (h *Histogram) Delta1h() HistogramValue
Delta1h returns the change in the last hour.
func (*Histogram) Delta1m ¶
func (h *Histogram) Delta1m() HistogramValue
Delta1m returns the change in the last 10 minutes.
func (*Histogram) LastUpdate ¶
LastUpdate returns the time at which the object was last updated.
func (*Histogram) Opts ¶
func (h *Histogram) Opts() HistogramOptions
Opts returns a copy of the options used to create the Histogram.
func (*Histogram) Value ¶
func (h *Histogram) Value() HistogramValue
Value returns the accumulated state of the histogram since it was created.
type HistogramBucket ¶
type HistogramBucket struct { // LowBound is the lower bound of the bucket. LowBound int64 // Count is the number of values in the bucket. Count int64 }
HistogramBucket is one histogram bucket.
type HistogramOptions ¶
type HistogramOptions struct { // NumBuckets is the number of buckets. NumBuckets int // GrowthFactor is the growth factor of the buckets. A value of 0.1 // indicates that bucket N+1 will be 10% larger than bucket N. GrowthFactor float64 // SmallestBucketSize is the size of the first bucket. Bucket sizes are // rounded down to the nearest integer. SmallestBucketSize float64 // MinValue is the lower bound of the first bucket. MinValue int64 }
HistogramOptions contains the parameters that define the histogram's buckets.
type HistogramValue ¶
type HistogramValue struct { // Count is the total number of values added to the histogram. Count int64 // Sum is the sum of all the values added to the histogram. Sum int64 // Min is the minimum of all the values added to the histogram. Min int64 // Max is the maximum of all the values added to the histogram. Max int64 // Buckets contains all the buckets of the histogram. Buckets []HistogramBucket }
HistogramValue is the value of Histogram objects.
func (HistogramValue) Print ¶
func (v HistogramValue) Print(w io.Writer)
Print writes textual output of the histogram values.
func (HistogramValue) String ¶
func (v HistogramValue) String() string
String returns the textual output of the histogram values as string.
type Stats ¶
type Stats struct {
// contains filtered or unexported fields
}
Stats is a simple helper for gathering additional statistics like histogram during benchmarks. This is not thread safe.
func AddStats ¶
AddStats adds a new unnamed Stats instance to the current benchmark. You need to run benchmarks by calling RunTestMain() to inject the stats to the benchmark results. If numBuckets is not positive, the default value (16) will be used. Please note that this calls b.ResetTimer() since it may be blocked until the previous benchmark stats is printed out. So AddStats() should typically be called at the very beginning of each benchmark function.
func AddStatsWithName ¶
AddStatsWithName adds a new named Stats instance to the current benchmark. With this, you can add multiple stats in a single benchmark. You need to run benchmarks by calling RunTestMain() to inject the stats to the benchmark results. If numBuckets is not positive, the default value (16) will be used. Please note that this calls b.ResetTimer() since it may be blocked until the previous benchmark stats is printed out. So AddStatsWithName() should typically be called at the very beginning of each benchmark function.
func NewStats ¶
NewStats creates a new Stats instance. If numBuckets is not positive, the default value (16) will be used.
func (*Stats) Add ¶
Add adds an elapsed time per operation to the stats.
func (*Stats) Print ¶
Print writes textual output of the Stats.
type Tracker ¶
type Tracker struct {
// contains filtered or unexported fields
}
Tracker is a min/max value tracker that keeps track of its min/max values over a given period of time, and with a given resolution. The initial min and max values are math.MaxInt64 and math.MinInt64 respectively.
func (*Tracker) LastUpdate ¶
LastUpdate returns the last update time of the range.
func (*Tracker) Max10m ¶
Max10m returns the maximum value for the last 10 minutes.
func (*Tracker) Max1h ¶
Max1h returns the maximum value for the last hour.
func (*Tracker) Max1m ¶
Max1m returns the maximum value for the last 1 minute.
func (*Tracker) Min10m ¶
Min10m returns the minimum value for the last 10 minutes.
func (*Tracker) Min1h ¶
Min1h returns the minimum value for the last hour.
func (*Tracker) Min1m ¶
Min1m returns the minimum value for the last 1 minute.
func (*Tracker) Push ¶
Push adds a new value if it is a new minimum or maximum.