Documentation ¶
Index ¶
- Variables
- func InitDB(storageFilePath string) (*bbolt.DB, error)
- func Seed(ctx context.Context, store Store, logger *zap.Logger) error
- type AgentUpdater
- type DependencyError
- type DependentResources
- type Event
- type EventType
- type Events
- func (e Events[T]) ByType(eventType EventType) []Event[T]
- func (e Events[T]) CanSafelyMerge(other Events[T]) bool
- func (e Events[T]) Clone() Events[T]
- func (e Events[T]) Contains(uniqueKey string, eventType EventType) bool
- func (e Events[T]) Empty() bool
- func (e Events[T]) Include(item T, eventType EventType)
- func (e Events[T]) Keys() []string
- func (e Events[T]) Merge(other Events[T])
- func (e Events[T]) Updates() []Event[T]
- type Options
- type QueryOption
- type Store
- type Updates
Constants ¶
This section is empty.
Variables ¶
var ErrResourceInUse = errors.New("resource in use")
ErrResourceInUse is used in delete functions to indicate the delete could not be performed because the Resource is a dependency of another. i.e. the Source that is being deleted is being referenced in a Configuration.
var ErrResourceMissing = errors.New("resource not found")
ErrResourceMissing is used in delete functions to indicate the delete could not be performed because no such resource exists
Functions ¶
Types ¶
type AgentUpdater ¶
AgentUpdater is given the current Agent model (possibly empty except for ID) and should update the Agent directly. We take this approach so that appropriate locking and/or transactions can be used for the operation as needed by the Store implementation.
type DependencyError ¶
type DependencyError struct {
// contains filtered or unexported fields
}
DependencyError is returned when trying to delete a resource that is being referenced by other resources.
func (*DependencyError) Error ¶
func (de *DependencyError) Error() string
type DependentResources ¶
type DependentResources []dependency
DependentResources is the return type of store.dependentResources and used to construct DependencyError. It has help methods empty(), message(), and add().
func FindDependentResources ¶
func FindDependentResources(ctx context.Context, s Store, r model.Resource) (DependentResources, error)
FindDependentResources finds the dependent resources using the ConfigurationIndex provided by the Store.
type Event ¶
type Event[T model.HasUniqueKey] struct { Type EventType `json:"type"` Item T `json:"item"` }
Event represents an insert, update, or remove of something stored in Store.
type EventType ¶
type EventType uint8
EventType is the type of event
const ( EventTypeInsert EventType = 1 EventTypeUpdate EventType = 2 EventTypeRemove EventType = 3 EventTypeLabel EventType = 4 )
Insert, Update, Remove, and Label are the possible changes to a resource. Remove can indicate that the resource has been deleted or that it no longer matches a filtered list of resources being observed.
Label is currently used to indicate that Agent labels have changed but there may also be other updates so it can be considered a subset of EventTypeUpdate where every EventTypeLabel is also an EventTypeUpdate.
type Events ¶
type Events[T model.HasUniqueKey] map[string]Event[T]
Events is a map of ID to Event
func NewEvents ¶
func NewEvents[T model.HasUniqueKey]() Events[T]
NewEvents returns a new empty set of events
func NewEventsWithItem ¶
func NewEventsWithItem[T model.HasUniqueKey](item T, eventType EventType) Events[T]
NewEventsWithItem returns a new set of events with an initial item and eventType
func (Events[T]) CanSafelyMerge ¶ added in v0.5.2
CanSafelyMerge returns true if the other events can be merged into this one. Currently we only merge events with different keys.
type Options ¶ added in v0.5.2
type Options struct { // SessionsSecret is used to encode sessions SessionsSecret string // MaxEventsToMerge is the maximum number of update events (inserts, updates, deletes, etc) to merge into a single // event. MaxEventsToMerge int }
Options are options that are common to all store implementations
type QueryOption ¶
type QueryOption func(*queryOptions)
QueryOption is an option used in Store queries
func WithLimit ¶
func WithLimit(limit int) QueryOption
WithLimit sets the maximum number of results to return. For paging, if the pages have 10 items per page, set the limit to 10.
func WithOffset ¶
func WithOffset(offset int) QueryOption
WithOffset sets the offset for the results to return. For paging, if the pages have 10 items per page and this is the 3rd page, set the offset to 20.
func WithQuery ¶
func WithQuery(query *search.Query) QueryOption
WithQuery adds a search query string to the query options
func WithSelector ¶
func WithSelector(selector model.Selector) QueryOption
WithSelector adds a selector to the query options
func WithSort ¶
func WithSort(field string) QueryOption
WithSort sets the sort order for the request. The sort value is the name of the field, sorted ascending. To sort descending, prefix the field with a minus sign (-). Some Stores only allow sorting by certain fields. Sort values not supported will be ignored.
type Store ¶
type Store interface { Clear() Agent(ctx context.Context, name string) (*model.Agent, error) Agents(ctx context.Context, options ...QueryOption) ([]*model.Agent, error) AgentsCount(context.Context, ...QueryOption) (int, error) // UpsertAgent adds a new Agent to the Store or updates an existing one UpsertAgent(ctx context.Context, agentID string, updater AgentUpdater) (*model.Agent, error) UpsertAgents(ctx context.Context, agentIDs []string, updater AgentUpdater) ([]*model.Agent, error) DeleteAgents(ctx context.Context, agentIDs []string) ([]*model.Agent, error) AgentVersion(ctx context.Context, name string) (*model.AgentVersion, error) AgentVersions(ctx context.Context) ([]*model.AgentVersion, error) DeleteAgentVersion(ctx context.Context, name string) (*model.AgentVersion, error) Configurations(ctx context.Context, options ...QueryOption) ([]*model.Configuration, error) Configuration(ctx context.Context, name string) (*model.Configuration, error) DeleteConfiguration(ctx context.Context, name string) (*model.Configuration, error) Source(ctx context.Context, name string) (*model.Source, error) Sources(ctx context.Context) ([]*model.Source, error) DeleteSource(ctx context.Context, name string) (*model.Source, error) SourceType(ctx context.Context, name string) (*model.SourceType, error) SourceTypes(ctx context.Context) ([]*model.SourceType, error) DeleteSourceType(ctx context.Context, name string) (*model.SourceType, error) Processor(ctx context.Context, name string) (*model.Processor, error) Processors(ctx context.Context) ([]*model.Processor, error) DeleteProcessor(ctx context.Context, name string) (*model.Processor, error) ProcessorType(ctx context.Context, name string) (*model.ProcessorType, error) ProcessorTypes(ctx context.Context) ([]*model.ProcessorType, error) DeleteProcessorType(ctx context.Context, name string) (*model.ProcessorType, error) Destination(ctx context.Context, name string) (*model.Destination, error) Destinations(ctx context.Context) ([]*model.Destination, error) DeleteDestination(ctx context.Context, name string) (*model.Destination, error) DestinationType(ctx context.Context, name string) (*model.DestinationType, error) DestinationTypes(ctx context.Context) ([]*model.DestinationType, error) DeleteDestinationType(ctx context.Context, name string) (*model.DestinationType, error) ApplyResources(ctx context.Context, resources []model.Resource) ([]model.ResourceStatus, error) // Batch delete of a slice of resources, returns the successfully deleted resources or an error. DeleteResources(ctx context.Context, resources []model.Resource) ([]model.ResourceStatus, error) // AgentConfiguration returns the configuration that should be applied to an agent. AgentConfiguration(ctx context.Context, agentID string) (*model.Configuration, error) // AgentsIDsMatchingConfiguration returns the list of agent IDs that are using the specified configuration AgentsIDsMatchingConfiguration(ctx context.Context, conf *model.Configuration) ([]string, error) // CleanupDisconnectedAgents removes agents that have disconnected before the specified time CleanupDisconnectedAgents(ctx context.Context, since time.Time) error // Updates will receive pipelines and configurations that have been updated or deleted, either because the // configuration changed or a component in them was updated. Agents inserted/updated from UpsertAgent and agents // removed from CleanupDisconnectedAgents are also sent with Updates. Updates() eventbus.Source[*Updates] // AgentIndex provides access to the search AgentIndex implementation managed by the Store AgentIndex(ctx context.Context) search.Index // ConfigurationIndex provides access to the search Index for Configurations ConfigurationIndex(ctx context.Context) search.Index // UserSessions must implement the gorilla sessions.Store interface UserSessions() sessions.Store // Measurements stores stats for agents and configurations Measurements() stats.Measurements }
Store handles interacting with a storage backend,
func NewBoltStore ¶
NewBoltStore returns a new store boltstore struct that implements the store.Store interface.
type Updates ¶
type Updates struct { Agents Events[*model.Agent] AgentVersions Events[*model.AgentVersion] Sources Events[*model.Source] SourceTypes Events[*model.SourceType] Processors Events[*model.Processor] ProcessorTypes Events[*model.ProcessorType] Destinations Events[*model.Destination] DestinationTypes Events[*model.DestinationType] Configurations Events[*model.Configuration] }
Updates are sent on the channel available from Store.Updates().
func (*Updates) IncludeAgent ¶
IncludeAgent will include the agent in the updates. While updates.Agents.Include can also be used directly, this matches the pattern of IncludeResource.
func (*Updates) IncludeResource ¶
IncludeResource will include the resource in the updates for the appropriate type. If the specified Resource is not supported by Updates, this will do nothing.