strategystore

package
v1.27.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 6, 2021 License: Apache-2.0 Imports: 6 Imported by: 102

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Aggregator added in v1.27.0

type Aggregator interface {
	// Close() from io.Closer stops the aggregator from aggregating throughput.
	io.Closer

	// RecordThroughput records throughput for an operation for aggregation.
	RecordThroughput(service, operation, samplerType string, probability float64)

	// Start starts aggregating operation throughput.
	Start()
}

Aggregator defines an interface used to aggregate operation throughput.

type Factory

type Factory interface {
	// Initialize performs internal initialization of the factory.
	Initialize(metricsFactory metrics.Factory, ssFactory storage.SamplingStoreFactory, logger *zap.Logger) error

	// CreateStrategyStore initializes the StrategyStore and returns it.
	CreateStrategyStore() (StrategyStore, Aggregator, error)
}

Factory defines an interface for a factory that can create implementations of different strategy storage components. Implementations are also encouraged to implement plugin.Configurable interface.

See also

plugin.Configurable

type StrategyStore

type StrategyStore interface {
	// GetSamplingStrategy retrieves the sampling strategy for the specified service.
	GetSamplingStrategy(ctx context.Context, serviceName string) (*sampling.SamplingStrategyResponse, error)
}

StrategyStore keeps track of service specific sampling strategies.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL