Documentation ¶
Index ¶
- func AddFlags(flagSet *flag.FlagSet)
- type Factory
- func (f *Factory) AddFlags(flagSet *flag.FlagSet)
- func (f *Factory) CreateDependencyReader() (dependencystore.Reader, error)
- func (f *Factory) CreateLock() (distributedlock.Lock, error)
- func (f *Factory) CreateSamplingStore(maxBuckets int) (samplingstore.Store, error)
- func (f *Factory) CreateSpanReader() (spanstore.Reader, error)
- func (f *Factory) CreateSpanWriter() (spanstore.Writer, error)
- func (f *Factory) InitFromOptions(opts Options)
- func (f *Factory) InitFromViper(v *viper.Viper, logger *zap.Logger)
- func (f *Factory) Initialize(metricsFactory metrics.Factory, logger *zap.Logger) error
- type Options
- type SamplingStore
- func (ss *SamplingStore) GetLatestProbabilities() (model.ServiceOperationProbabilities, error)
- func (ss *SamplingStore) GetThroughput(start, end time.Time) ([]*model.Throughput, error)
- func (ss *SamplingStore) InsertProbabilitiesAndQPS(hostname string, probabilities model.ServiceOperationProbabilities, ...) error
- func (ss *SamplingStore) InsertThroughput(throughput []*model.Throughput) error
- type Store
- func (m *Store) FindTraceIDs(ctx context.Context, query *spanstore.TraceQueryParameters) ([]model.TraceID, error)
- func (st *Store) FindTraces(ctx context.Context, query *spanstore.TraceQueryParameters) ([]*model.Trace, error)
- func (st *Store) GetDependencies(ctx context.Context, endTs time.Time, lookback time.Duration) ([]model.DependencyLink, error)
- func (st *Store) GetOperations(ctx context.Context, query spanstore.OperationQueryParameters) ([]spanstore.Operation, error)
- func (st *Store) GetServices(ctx context.Context) ([]string, error)
- func (st *Store) GetTrace(ctx context.Context, traceID model.TraceID) (*model.Trace, error)
- func (st *Store) WriteSpan(ctx context.Context, span *model.Span) error
- type Tenant
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Factory ¶
type Factory struct {
// contains filtered or unexported fields
}
Factory implements storage.Factory and creates storage components backed by memory store.
func (*Factory) CreateDependencyReader ¶
func (f *Factory) CreateDependencyReader() (dependencystore.Reader, error)
CreateDependencyReader implements storage.Factory
func (*Factory) CreateLock ¶ added in v1.28.0
func (f *Factory) CreateLock() (distributedlock.Lock, error)
CreateLock implements storage.SamplingStoreFactory
func (*Factory) CreateSamplingStore ¶ added in v1.28.0
func (f *Factory) CreateSamplingStore(maxBuckets int) (samplingstore.Store, error)
CreateSamplingStore implements storage.SamplingStoreFactory
func (*Factory) CreateSpanReader ¶
CreateSpanReader implements storage.Factory
func (*Factory) CreateSpanWriter ¶
CreateSpanWriter implements storage.Factory
func (*Factory) InitFromOptions ¶ added in v1.18.1
InitFromOptions initializes factory from the supplied options
func (*Factory) InitFromViper ¶ added in v1.5.0
InitFromViper implements plugin.Configurable
type Options ¶ added in v1.5.0
type Options struct {
Configuration config.Configuration `mapstructure:",squash"`
}
Options stores the configuration entries for this storage
func (*Options) InitFromViper ¶ added in v1.5.0
InitFromViper initializes the options struct with values from Viper
type SamplingStore ¶ added in v1.28.0
SamplingStore is an in-memory store for sampling data
func NewSamplingStore ¶ added in v1.28.0
func NewSamplingStore(maxBuckets int) *SamplingStore
NewSamplingStore creates an in-memory sampling store.
func (*SamplingStore) GetLatestProbabilities ¶ added in v1.28.0
func (ss *SamplingStore) GetLatestProbabilities() (model.ServiceOperationProbabilities, error)
GetLatestProbabilities implements samplingstore.Store#GetLatestProbabilities.
func (*SamplingStore) GetThroughput ¶ added in v1.28.0
func (ss *SamplingStore) GetThroughput(start, end time.Time) ([]*model.Throughput, error)
GetThroughput implements samplingstore.Store#GetThroughput.
func (*SamplingStore) InsertProbabilitiesAndQPS ¶ added in v1.28.0
func (ss *SamplingStore) InsertProbabilitiesAndQPS( hostname string, probabilities model.ServiceOperationProbabilities, qps model.ServiceOperationQPS, ) error
InsertProbabilitiesAndQPS implements samplingstore.Store#InsertProbabilitiesAndQPS.
func (*SamplingStore) InsertThroughput ¶ added in v1.28.0
func (ss *SamplingStore) InsertThroughput(throughput []*model.Throughput) error
InsertThroughput implements samplingstore.Store#InsertThroughput.
type Store ¶
Store is an in-memory store of traces
func WithConfiguration ¶ added in v1.5.0
func WithConfiguration(configuration config.Configuration) *Store
WithConfiguration creates a new in memory storage based on the given configuration
func (*Store) FindTraceIDs ¶ added in v1.9.0
func (m *Store) FindTraceIDs(ctx context.Context, query *spanstore.TraceQueryParameters) ([]model.TraceID, error)
FindTraceIDs is not implemented.
func (*Store) FindTraces ¶
func (st *Store) FindTraces(ctx context.Context, query *spanstore.TraceQueryParameters) ([]*model.Trace, error)
FindTraces returns all traces in the query parameters are satisfied by a trace's span
func (*Store) GetDependencies ¶
func (st *Store) GetDependencies(ctx context.Context, endTs time.Time, lookback time.Duration) ([]model.DependencyLink, error)
GetDependencies returns dependencies between services
func (*Store) GetOperations ¶
func (st *Store) GetOperations( ctx context.Context, query spanstore.OperationQueryParameters, ) ([]spanstore.Operation, error)
GetOperations returns the operations of a given service
func (*Store) GetServices ¶
GetServices returns a list of all known services