Documentation ¶
Overview ¶
Package builders builds objects from config.InstanceConfig objects.
These are functions separate from config.InstanceConfig so that we don't end up with cyclical import issues.
Index ¶
- func GetCacheFromConfig(ctx context.Context, instanceConfig config.InstanceConfig) (cache.Cache, error)
- func NewAlertStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (alerts.Store, error)
- func NewAnomalyGroupStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (anomalygroup.Store, error)
- func NewCockroachDBFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig, checkSchema bool) (pool.Pool, error)
- func NewCulpritStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (culprit.Store, error)
- func NewFavoriteStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (favorites.Store, error)
- func NewGraphsShortcutStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (graphsshortcut.Store, error)
- func NewIngestedFSFromConfig(ctx context.Context, cfg *config.InstanceConfig, local bool) (fs.FS, error)
- func NewPerfGitFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (perfgit.Git, error)
- func NewRegressionStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig, ...) (regression.Store, error)
- func NewShortcutStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (shortcut.Store, error)
- func NewSourceFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig, local bool) (file.Source, error)
- func NewSubscriptionStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (subscription.Store, error)
- func NewTraceStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (tracestore.TraceStore, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetCacheFromConfig ¶
func GetCacheFromConfig(ctx context.Context, instanceConfig config.InstanceConfig) (cache.Cache, error)
GetCacheFromConfig returns a cache.Cache instance based on the given configuration.
func NewAlertStoreFromConfig ¶
func NewAlertStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (alerts.Store, error)
NewAlertStoreFromConfig creates a new alerts.Store from the InstanceConfig.
func NewAnomalyGroupStoreFromConfig ¶
func NewAnomalyGroupStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (anomalygroup.Store, error)
NewAnomalyGroupStoreFromConfig creates a new anomalygroup.Store from the InstanceConfig which provides access to the anomalygroup data.
func NewCockroachDBFromConfig ¶
func NewCockroachDBFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig, checkSchema bool) (pool.Pool, error)
NewCockroachDBFromConfig opens an existing CockroachDB database.
No migrations are applied automatically, they must be applied by the 'migrate' command line application. See COCKROACHDB.md for more details.
func NewCulpritStoreFromConfig ¶
func NewCulpritStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (culprit.Store, error)
NewCulpritStoreFromConfig creates a new culprit.Store from the InstanceConfig which provides access to the culprit data.
func NewFavoriteStoreFromConfig ¶
func NewFavoriteStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (favorites.Store, error)
NewFavoriteStoreFromConfig creates a new favorites.Store from the InstanceConfig which provides access to the favorite data.
func NewGraphsShortcutStoreFromConfig ¶
func NewGraphsShortcutStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (graphsshortcut.Store, error)
NewShortcutStoreFromConfig creates a new shortcut.Store from the InstanceConfig.
func NewIngestedFSFromConfig ¶
func NewIngestedFSFromConfig(ctx context.Context, cfg *config.InstanceConfig, local bool) (fs.FS, error)
NewIngestedFSFromConfig creates a new fs.FS from the InstanceConfig which provides access to ingested files.
If local is true then we aren't running in production.
func NewPerfGitFromConfig ¶
func NewPerfGitFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (perfgit.Git, error)
NewPerfGitFromConfig return a new perfgit.Git for the given instanceConfig.
The instance created does not poll by default, callers need to call StartBackgroundPolling().
func NewRegressionStoreFromConfig ¶
func NewRegressionStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig, alertsConfigProvider alerts.ConfigProvider) (regression.Store, error)
NewRegressionStoreFromConfig creates a new regression.RegressionStore from the InstanceConfig.
If local is true then we aren't running in production.
func NewShortcutStoreFromConfig ¶
func NewShortcutStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (shortcut.Store, error)
NewShortcutStoreFromConfig creates a new shortcut.Store from the InstanceConfig.
func NewSourceFromConfig ¶
func NewSourceFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig, local bool) (file.Source, error)
NewSourceFromConfig creates a new file.Source from the InstanceConfig.
If local is true then we aren't running in production.
func NewSubscriptionStoreFromConfig ¶
func NewSubscriptionStoreFromConfig(ctx context.Context, instanceConfig *config.InstanceConfig) (subscription.Store, error)
NewSubscriptionStoreFromConfig creates a new subscription.Store from the InstanceConfig which provides access to the subscription data.
func NewTraceStoreFromConfig ¶
func NewTraceStoreFromConfig(ctx context.Context, local bool, instanceConfig *config.InstanceConfig) (tracestore.TraceStore, error)
NewTraceStoreFromConfig creates a new TraceStore from the InstanceConfig.
If local is true then we aren't running in production.
Types ¶
This section is empty.