anomalygroup

package
v0.0.0-...-4bca2e0 Latest Latest
Warning

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

Go to latest
Published: Sep 20, 2024 License: BSD-3-Clause Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Store

type Store interface {
	// Create a new anomaly group record.
	// Example use case: when a new anomaly is detected and no associted
	//   group can be found.
	Create(ctx context.Context,
		subscription_name string,
		subscription_revision string,
		domain_name string,
		benchmark_name string,
		start_commit int64,
		end_commit int64,
		action string) (string, error)

	// Load the anomaly group by its ID.
	// Example use case: when the orchestrator try to take action on the
	//   group, it will load the group for the info needed.
	LoadById(ctx context.Context, group_id string) (*pb.AnomalyGroup, error)

	FindExistingGroup(
		ctx context.Context,
		subscription_name string,
		subscription_revision string,
		domain_name string,
		benchmark_name string,
		start_commit int64,
		end_commit int64,
		action string) ([]*pb.AnomalyGroup, error)

	// Update the bisection id for an anomaly group.
	// Example use case: if the group's action is BISECT, we will launch
	//   a bisection job. The job id will be saved here.
	UpdateBisectID(ctx context.Context, group_id string, bisection_id string) error

	// Update the reported issue id for an anomaly group.
	// Example use case: if the group's action is REPORT, we will file a
	//	 bug for it. The bug id will be saved here.
	UpdateReportedIssueID(ctx context.Context, group_id string, reported_issue_id string) error

	// Add one anoamly ID to an anomaly group's anomaly list.
	// Example use case: when a new anomaly is detected and associated
	//   with an existing group.
	AddAnomalyID(ctx context.Context, group_id string, anomaly_id string) error

	// Add culprit IDs to an anomaly group's culprit list.
	// Example use case: when an auto bisection job finished with
	// culprit(s) detected.
	AddCulpritIDs(ctx context.Context, group_id string, culprit_ids []string) error
}

Data access layer for anomaly group.

Directories

Path Synopsis
proto
v1
v1/mocks
Code generated by mockery v0.0.0-dev.
Code generated by mockery v0.0.0-dev.

Jump to

Keyboard shortcuts

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