pkg/test/mako/alerter/alerter.go

80 lines
2.6 KiB
Go

/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package alerter
import (
"fmt"
"log"
qpb "github.com/google/mako/proto/quickstore/quickstore_go_proto"
"knative.dev/pkg/test/helpers"
"knative.dev/pkg/test/mako/alerter/github"
"knative.dev/pkg/test/mako/alerter/slack"
"knative.dev/pkg/test/mako/config"
)
// Alerter controls alert for performance regressions detected by Mako.
type Alerter struct {
githubIssueHandler *github.IssueHandler
slackMessageHandler *slack.MessageHandler
}
// SetupGitHub will setup SetupGitHub for the alerter.
func (alerter *Alerter) SetupGitHub(org, repo, githubTokenPath string) {
issueHandler, err := github.Setup(org, repo, githubTokenPath, false)
if err != nil {
log.Printf("Error happens in setup '%v', Github alerter will not be enabled", err)
}
alerter.githubIssueHandler = issueHandler
}
// SetupSlack will setup Slack for the alerter.
func (alerter *Alerter) SetupSlack(userName, readTokenPath, writeTokenPath string, channels []config.Channel) {
messageHandler, err := slack.Setup(userName, readTokenPath, writeTokenPath, channels, false)
if err != nil {
log.Printf("Error happens in setup '%v', Slack alerter will not be enabled", err)
}
alerter.slackMessageHandler = messageHandler
}
// HandleBenchmarkResult will handle the benchmark result which returns from `q.Store()`
func (alerter *Alerter) HandleBenchmarkResult(testName string, output qpb.QuickstoreOutput, err error) error {
if err != nil {
if output.GetStatus() == qpb.QuickstoreOutput_ANALYSIS_FAIL {
var errs []error
summary := fmt.Sprintf("%s\n\nSee run chart at: %s", output.GetSummaryOutput(), output.GetRunChartLink())
if alerter.githubIssueHandler != nil {
if err := alerter.githubIssueHandler.CreateIssueForTest(testName, summary); err != nil {
errs = append(errs, err)
}
}
if alerter.slackMessageHandler != nil {
if err := alerter.slackMessageHandler.SendAlert(summary); err != nil {
errs = append(errs, err)
}
}
return helpers.CombineErrors(errs)
}
return err
}
if alerter.githubIssueHandler != nil {
return alerter.githubIssueHandler.CloseIssueForTest(testName)
}
return nil
}