-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Bug 1828427: Add CI test to check for critical alerts post upgrade success #24786
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
openshift-merge-robot
merged 2 commits into
openshift:master
from
jottofar:ota-141-add-ci-alerts
Apr 27, 2020
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| package alert | ||
|
|
||
| import ( | ||
| "context" | ||
| "fmt" | ||
| "time" | ||
|
|
||
| g "github.com/onsi/ginkgo" | ||
|
|
||
| exutil "github.com/openshift/origin/test/extended/util" | ||
| helper "github.com/openshift/origin/test/extended/util/prometheus" | ||
|
|
||
| metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
| "k8s.io/kubernetes/test/e2e/framework" | ||
| e2eskipper "k8s.io/kubernetes/test/e2e/framework/skipper" | ||
| "k8s.io/kubernetes/test/e2e/upgrades" | ||
| ) | ||
|
|
||
| const ( | ||
| // Delay after upgrade is complete before checking for critical alerts | ||
| alertCheckSleepMinutes = 5 | ||
| alertCheckSleep = alertCheckSleepMinutes * time.Minute | ||
|
|
||
| // Previous period in which to check for critical alerts | ||
| alertPeriodCheckMinutes = 1 | ||
| ) | ||
|
|
||
| // UpgradeTest runs post-upgrade after alertCheckSleep delay and tests if any critical alerts are firing. | ||
| type UpgradeTest struct { | ||
| url string | ||
| bearerToken string | ||
| oc *exutil.CLI | ||
| } | ||
|
|
||
| func (UpgradeTest) Name() string { return "check-for-critical-alerts" } | ||
| func (UpgradeTest) DisplayName() string { | ||
| return "Check if critical alerts are firing after upgrade success" | ||
| } | ||
|
|
||
| // Setup creates parameters to query Prometheus | ||
| func (t *UpgradeTest) Setup(f *framework.Framework) { | ||
| g.By("Setting up post-upgrade alert test") | ||
|
|
||
| url, bearerToken, oc, ok := helper.ExpectPrometheus(f) | ||
| if !ok { | ||
| framework.Failf("Prometheus could not be located on this cluster, failing test %s", t.Name()) | ||
| } | ||
| t.url = url | ||
| t.bearerToken = bearerToken | ||
| t.oc = oc | ||
| framework.Logf("Post-upgrade alert test setup complete") | ||
| } | ||
|
|
||
| // Test checks if any critical alerts are firing. | ||
| func (t *UpgradeTest) Test(f *framework.Framework, done <-chan struct{}, upgrade upgrades.UpgradeType) { | ||
| g.By("Checking for critical alerts") | ||
|
|
||
| // Recover current test if it fails so test suite can complete | ||
| defer g.GinkgoRecover() | ||
|
|
||
| // Block until upgrade is done | ||
| g.By("Waiting for upgrade to finish before checking for critical alerts") | ||
| <-done | ||
|
|
||
| ctx, cancel := context.WithCancel(context.Background()) | ||
|
|
||
| // Additonal delay after upgrade completion | ||
| g.By("Waiting before checking for critical alerts") | ||
| time.Sleep(alertCheckSleep) | ||
| cancel() | ||
|
|
||
| if helper.TestUnsupportedAllowVersionSkew() { | ||
| e2eskipper.Skipf("Test is disabled to allow cluster components to have different versions, and skewed versions trigger multiple other alerts") | ||
jottofar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| t.oc.SetupProject() | ||
| ns := t.oc.Namespace() | ||
| execPod := exutil.CreateCentosExecPodOrFail(t.oc.AdminKubeClient(), ns, "execpod", nil) | ||
| defer func() { | ||
| t.oc.AdminKubeClient().CoreV1().Pods(ns).Delete(ctx, execPod.Name, *metav1.NewDeleteOptions(1)) | ||
| }() | ||
|
|
||
| // Query to check if Prometheus has been up and running for entire post-upgrade | ||
| // period by verifying Watchdog alert has been in firing state | ||
| watchdogQuery := fmt.Sprintf(`count_over_time(ALERTS{alertstate="firing",alertname="Watchdog", severity="none"}[%dm])`, alertCheckSleepMinutes) | ||
|
|
||
| // Query to check for any critical severity alerts that have occurred within the last alertPeriodCheckMinutes. | ||
jottofar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // TODO Remove KubeAPIErrorBudgetBurn from ignore list once Bug 1821661 is fixed. | ||
| criticalAlertQuery := fmt.Sprintf(`count_over_time(ALERTS{alertname!~"Watchdog|AlertmanagerReceiversNotConfigured|KubeAPILatencyHigh|KubeAPIErrorBudgetBurn",alertstate="firing",severity="critical"}[%dm]) >= 1`, alertPeriodCheckMinutes) | ||
|
|
||
| tests := map[string]bool{ | ||
| watchdogQuery: true, | ||
| criticalAlertQuery: false, | ||
| } | ||
|
|
||
| helper.RunQueries(tests, t.oc, ns, execPod.Name, t.url, t.bearerToken) | ||
|
|
||
| framework.Logf("No crtical alerts firing post-upgrade") | ||
| } | ||
|
|
||
| // Teardown cleans up any remaining resources. | ||
| func (t *UpgradeTest) Teardown(f *framework.Framework) { | ||
| // rely on the namespace deletion to clean up everything | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.