blob: fa02a0c270c3c5e3e7bd7240bf4c81cba19e84c7 [file] [log] [blame]
package alerts
import (
"fmt"
"net/url"
"strconv"
"strings"
"go.skia.org/infra/go/paramtools"
"go.skia.org/infra/perf/go/types"
)
const (
// BadAlertID is the value of an Alert.ID if it is invalid, i.e. hasn't
// been stored yet.
//
// TODO(jcgregorio) Make Alert.ID its own type and BadAlertID and
// instance of that type.
BadAlertID = int64(-1)
// BadAlertIDAsString is the value of an Alert.ID if it is invalid, i.e.
// hasn't been stored yet.
BadAlertIDAsAsString = "-1"
)
var (
// DefaultSparse is the default value for Config.Sparse.
DefaultSparse = false
)
// Direction a step takes that will cause an alert.
//
type Direction string
// The values for the Direction enum. Run 'go generate' if you
// add/remove/update these values. You must have 'stringer' installed, i.e.
//
// go get golang.org/x/tools/cmd/stringer
const (
BOTH Direction = "BOTH"
UP Direction = "UP"
DOWN Direction = "DOWN"
)
// AllDirections is a list of all possible Direction values.
var AllDirections = []Direction{
UP,
DOWN,
BOTH,
}
// ConfigState is the current state of an alerts.Config.
//
type ConfigState string
// The values for the AlertConfigState enum. Run 'go generate' if you
// add/remove/update these values. You must have 'stringer' installed, i.e.
//
// go get golang.org/x/tools/cmd/stringer
const (
ACTIVE ConfigState = "ACTIVE"
DELETED ConfigState = "DELETED"
)
// AllConfigState is a list of all possible ConfigState values.
var AllConfigState = []ConfigState{
ACTIVE,
DELETED,
}
// ConfigStateToInt converts the string ConfigState into an int, which it used
// to be, used only when storing Alerts.
func ConfigStateToInt(c ConfigState) int {
if c == DELETED {
return 1
}
return 0
}
// Alert represents the configuration for one alert.
type Alert struct {
// We need to keep the int64 version of the ID around to support Cloud
// Datastore. Once everyone migrates to SQL backed datastores it can be
// removed.
IDAsString string `json:"id_as_string" `
DisplayName string `json:"display_name" `
Query string `json:"query" ` // The query to perform on the trace store to select the traces to alert on.
Alert string `json:"alert" ` // Email address to send alerts to.
Interesting float32 `json:"interesting" ` // The regression interestingness threshold.
BugURITemplate string `json:"bug_uri_template"` // URI Template used for reporting bugs. Format TBD.
Algo types.RegressionDetectionGrouping `json:"algo" ` // Which clustering algorithm to use.
Step types.StepDetection `json:"step" `
// Which algorithm to use to detect steps.
StateAsString ConfigState `json:"state" ` // The state of the config.
Owner string `json:"owner" ` // Email address of the person that owns this alert.
StepUpOnly bool `json:"step_up_only"` // If true then only steps up will trigger an alert. [Deprecated, use DirectionAsString.]
// Direction is here to support the legacy format of Alerts where Direction
// was an integer enum, with 0 = BOTH, 1 = UP, and 2 = DOWN. This is only
// needed for Cloud Datastore, not SQL backed stores. This can be deleted
// after migrating away from Cloud Datastore.
Direction int `json:"-" `
DirectionAsString Direction `json:"direction" ` // Which direction will trigger an alert.
Radius int `json:"radius" ` // How many commits to each side of a commit to consider when looking for a step. 0 means use the server default.
K int `json:"k" ` // The K in k-means clustering. 0 means use an algorithmically chosen value based on the data.
GroupBy string `json:"group_by" ` // A comma separated list of keys in the paramset that all Clustering should be broken up across. Keys must not appear in Query.
Sparse bool `json:"sparse" ` // Data is sparse, so only include commits that have data.
MinimumNum int `json:"minimum_num"` // How many traces need to be found interesting before an alert is fired.
Category string `json:"category" ` // Which category this alert falls into.
}
type AlertsStatus struct {
Alerts int `json:"alerts"`
}
// SetIDFromInt64 sets both the integer and string IDs.
func (c *Alert) SetIDFromInt64(id int64) {
c.IDAsString = fmt.Sprintf("%d", id)
}
// IDAsStringToInt returns the IDAsString as an int64.
//
// An invalid alert id (-1) will be returned if the string can't be parsed.
func (c *Alert) IDAsStringToInt() int64 {
return IDAsStringToInt(c.IDAsString)
}
// IDAsStringToInt returns the IDAsString as an int64.
//
// An invalid alert id (-1) will be returned if the string can't be parsed.
func IDAsStringToInt(s string) int64 {
i, err := strconv.ParseInt(s, 10, 64)
if err != nil {
return BadAlertID
}
return i
}
// IDToString returns the alerts ID formatted as a string.
func IDToString(id int64) string {
return fmt.Sprintf("%d", id)
}
// StateToInt converts the State into an int which is used when storing Alerts.
func (c *Alert) StateToInt() int {
return ConfigStateToInt(c.StateAsString)
}
// SetIDFromString sets the Alerts ID to the parsed value of the string.
//
// An invalid alert id (-1) will be set if the string can't be parsed.
func (c *Alert) SetIDFromString(s string) {
c.IDAsString = s
}
// GroupedBy returns the parsed GroupBy value as a slice of strings.
func (c *Alert) GroupedBy() []string {
ret := []string{}
for _, s := range strings.Split(c.GroupBy, ",") {
s = strings.TrimSpace(s)
if s == "" {
continue
}
ret = append(ret, s)
}
return ret
}
// KeyValue holds a single Params key and value, used in 'Combination'.
type KeyValue struct {
Key string
Value string
}
// Combination is a slice of KeyValue's, returned from GroupCombinations.
type Combination []KeyValue
// equal returns true if the two slices of ints are equal.
func equal(sliceA, sliceB []int) bool {
for i, a := range sliceA {
if a != sliceB[i] {
return false
}
}
return true
}
// inc() will cycle through all combinations of slices with integer values <=
// the values in limits.
//
// I.e. inc increments the values in 'a' up the to maximum values in 'limits',
// effectively counting as if each column in the slice was a different base.
//
// I.e. inc([0,0,1], [1,1,1]) would return [0,1,0].
//
// See the unit tests for more examples.
func inc(a, limits []int) []int {
ret := make([]int, len(a))
_ = copy(ret, a)
for i := len(a) - 1; i >= 0; i-- {
ret[i] = ret[i] + 1
if ret[i] <= limits[i] {
break
}
ret[i] = 0
}
return ret
}
// toCombination converts the slice of offsets into a Combination.
func toCombination(offsets []int, keys []string, ps paramtools.ReadOnlyParamSet) (Combination, error) {
ret := Combination{}
for i, offset := range offsets {
key := keys[i]
values, ok := ps[key]
if !ok {
return nil, fmt.Errorf("Key %q not found in ParamSet %#v", key, ps)
}
ret = append(ret, KeyValue{
Key: key,
Value: values[offset],
})
}
return ret, nil
}
// GroupCombinations returns a slice of Combinations that represent
// all the GroupBy combinations possible for the given ParamSet.
//
// I.e. for:
// ps := paramtools.ParamSet{
// "model": []string{"nexus4", "nexus6", "nexus6"},
// "config": []string{"565", "8888", "nvpr"},
// "arch": []string{"ARM", "x86"},
// }
//
// the GroupCombinations for a GroupBy of "config, arch" would be:
//
// []Combination{
// Combination{KeyValue{"arch", "ARM"}, KeyValue{"config", "565"}},
// Combination{KeyValue{"arch", "ARM"}, KeyValue{"config", "8888"}},
// Combination{KeyValue{"arch", "ARM"}, KeyValue{"config", "nvpr"}},
// Combination{KeyValue{"arch", "x86"}, KeyValue{"config", "565"}},
// Combination{KeyValue{"arch", "x86"}, KeyValue{"config", "8888"}},
// Combination{KeyValue{"arch", "x86"}, KeyValue{"config", "nvpr"}},
// }
//
func (c *Alert) GroupCombinations(ps paramtools.ReadOnlyParamSet) ([]Combination, error) {
limits := []int{}
keys := c.GroupedBy()
for _, key := range keys {
limits = append(limits, len(ps[key])-1)
}
ret := []Combination{}
zeroes := make([]int, len(limits))
cfg := make([]int, len(limits))
for {
comb, err := toCombination(cfg, keys, ps)
if err != nil {
return nil, fmt.Errorf("Failed to build combination: %s", err)
}
ret = append(ret, comb)
cfg = inc(cfg, limits)
if equal(cfg, zeroes) {
break
}
}
return ret, nil
}
// QueriesFromParamset uses GroupCombinations to produce the full set of
// queries that this Config represents.
func (c *Alert) QueriesFromParamset(paramset paramtools.ReadOnlyParamSet) ([]string, error) {
ret := []string{}
if len(c.GroupBy) != 0 {
allCombinations, err := c.GroupCombinations(paramset)
if err != nil {
return nil, fmt.Errorf("Failed to build GroupBy combinations: %s", err)
}
for _, combo := range allCombinations {
parsed, err := url.ParseQuery(c.Query)
if err != nil {
return nil, fmt.Errorf("Found invalid query %q: %s", c.Query, err)
}
for _, kv := range combo {
parsed[kv.Key] = []string{kv.Value}
}
ret = append(ret, parsed.Encode())
}
} else {
ret = append(ret, c.Query)
}
return ret, nil
}
// Validate returns true if the Alert is valid.
func (c *Alert) Validate() error {
parsed, err := url.ParseQuery(c.Query)
if err != nil {
return fmt.Errorf("Invalid Config: Invalid Query: %s", err)
}
if c.GroupBy != "" {
for _, groupParam := range c.GroupedBy() {
if _, ok := parsed[groupParam]; ok {
return fmt.Errorf("Invalid Config: Group By values %q must not appear in the Query: %q ", c.GroupBy, c.Query)
}
}
}
if c.StepUpOnly {
c.StepUpOnly = false
c.DirectionAsString = UP
}
return nil
}
// NewConfig creates a new Config properly initialized.
func NewConfig() *Alert {
return &Alert{
IDAsString: fmt.Sprintf("%d", BadAlertID),
Algo: types.KMeansGrouping,
StateAsString: ACTIVE,
Sparse: DefaultSparse,
DirectionAsString: BOTH,
}
}