Documentation ¶
Index ¶
- func BuildFactsFromFile(path string, file string) (map[string]*engine.Fact, []error)
- func ExecuteFact(ti time.Time, f engine.Fact, situationID int64, situationInstanceID int64, ...) (*reader.WidgetData, error)
- func ExecuteFactV6(ti time.Time, f engine.Fact, situationID int64, situationInstanceID int64, ...) (*reader.WidgetData, error)
- func ExecuteFactV8(ti time.Time, f engine.Fact, situationID int64, situationInstanceID int64, ...) (*reader.WidgetData, error)
- func ExecuteV6(esSearch *builder.EsSearch) (*reader.WidgetData, error)
- func FindIndices(f engine.Fact, ti time.Time, update bool) []string
- func GetBaselineValues(widgetData *reader.WidgetData, factId int64, situationID int64, ...)
- func ParseFact(factName string, factData map[string]interface{}) (*engine.Fact, error)
- func PrepareV6(f *engine.Fact, nhit int, offset int, t time.Time, ...) (*builder.EsSearch, error)
- func ReplaceGlobals(repository Repository) func()
- type NativeMapRepository
- func (r *NativeMapRepository) Create(fact engine.Fact) (int64, error)
- func (r *NativeMapRepository) Delete(id int64) error
- func (r *NativeMapRepository) Get(id int64) (engine.Fact, bool, error)
- func (r *NativeMapRepository) GetAll() (map[int64]engine.Fact, error)
- func (r *NativeMapRepository) GetAllByIDs(ids []int64) (map[int64]engine.Fact, error)
- func (r *NativeMapRepository) GetByName(name string) (engine.Fact, bool, error)
- func (r *NativeMapRepository) Update(id int64, fact engine.Fact) error
- type PostgresRepository
- func (r *PostgresRepository) Create(fact engine.Fact) (int64, error)
- func (r *PostgresRepository) Delete(id int64) error
- func (r *PostgresRepository) Get(id int64) (engine.Fact, bool, error)
- func (r *PostgresRepository) GetAll() (map[int64]engine.Fact, error)
- func (r *PostgresRepository) GetAllByIDs(ids []int64) (map[int64]engine.Fact, error)
- func (r *PostgresRepository) GetByName(name string) (engine.Fact, bool, error)
- func (r *PostgresRepository) Update(id int64, fact engine.Fact) error
- type Repository
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BuildFactsFromFile ¶
BuildFactsFromFile This functions creates the facts from the provided file
func ExecuteFact ¶ added in v5.2.0
func ExecuteFactV6 ¶ added in v5.2.0
func ExecuteFactV8 ¶ added in v5.2.0
func ExecuteV6 ¶ added in v5.2.0
func ExecuteV6(esSearch *builder.EsSearch) (*reader.WidgetData, error)
ExecuteV6 calculate a fact a specific time and returns the result in a standard format
func FindIndices ¶ added in v5.2.0
func GetBaselineValues ¶ added in v5.3.6
func PrepareV6 ¶ added in v5.2.0
func PrepareV6(f *engine.Fact, nhit int, offset int, t time.Time, parameters map[string]string, update bool) (*builder.EsSearch, error)
PrepareV6 enrich a fact by specifying the offset and the number of hits returned It also specify the target index based on the fact model
func ReplaceGlobals ¶
func ReplaceGlobals(repository Repository) func()
ReplaceGlobals affect a new repository to the global repository singleton
Types ¶
type NativeMapRepository ¶
type NativeMapRepository struct {
// contains filtered or unexported fields
}
NativeMapRepository is an implementation of entity.Repository, supported by standard native in-memory map
func (*NativeMapRepository) Create ¶
func (r *NativeMapRepository) Create(fact engine.Fact) (int64, error)
Create stores the given new fact in the database as a json.
func (*NativeMapRepository) Delete ¶
func (r *NativeMapRepository) Delete(id int64) error
Delete deletes an entity from the repository by its name
func (*NativeMapRepository) GetAll ¶
func (r *NativeMapRepository) GetAll() (map[int64]engine.Fact, error)
GetAll returns all entities in the repository
func (*NativeMapRepository) GetAllByIDs ¶
GetAllByIDs returns all entities in the repository
type PostgresRepository ¶
type PostgresRepository struct {
// contains filtered or unexported fields
}
PostgresRepository is a repository containing the Fact definition based on a PSQL database and implementing the repository interface
func (*PostgresRepository) Create ¶
func (r *PostgresRepository) Create(fact engine.Fact) (int64, error)
Create creates a new Fact definition in the repository
func (*PostgresRepository) Delete ¶
func (r *PostgresRepository) Delete(id int64) error
Delete deletes an entity from the repository by its name
func (*PostgresRepository) GetAll ¶
func (r *PostgresRepository) GetAll() (map[int64]engine.Fact, error)
GetAll returns all entities in the repository
func (*PostgresRepository) GetAllByIDs ¶
GetAllByIDs returns all entities filtered by IDs in the repository
type Repository ¶
type Repository interface { Get(id int64) (engine.Fact, bool, error) GetByName(name string) (engine.Fact, bool, error) Create(fact engine.Fact) (int64, error) Update(id int64, fact engine.Fact) error Delete(id int64) error GetAll() (map[int64]engine.Fact, error) GetAllByIDs(ids []int64) (map[int64]engine.Fact, error) }
Repository is a storage interface which can be implemented by multiple backend (in-memory map, sql database, in-memory cache, file system, ...) It allows standard CRUD operation on facts
func NewNativeMapRepository ¶
func NewNativeMapRepository() Repository
NewNativeMapRepository returns a new instance of NativeMapRepository
func NewPostgresRepository ¶
func NewPostgresRepository(dbClient *sqlx.DB) Repository
NewPostgresRepository returns a new instance of PostgresRepository