Skip to content
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

AggregatedAPIDown alert threshold set back to 85% #1237

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/control-plane/prometheus-rule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ spec:
has been only {{ $value | humanize }}% available over the last 10m.
summary: An aggregated API is down.
expr: |
(1 - max by(name, namespace)(avg_over_time(aggregator_unavailable_apiservice[10m]))) * 100 < 70
(1 - max by(name, namespace)(avg_over_time(aggregator_unavailable_apiservice[10m]))) * 100 < 85
for: 5m
labels:
severity: warning
Expand Down
13 changes: 0 additions & 13 deletions jsonnet/patch-rules.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -88,19 +88,6 @@ local patchedRules = [
},
],
},
{
name: 'kubernetes-system-apiserver',
rules: [
{
// Lower treshold to be resilient to DNS rollouts and CA rotations.
// https://bugzilla.redhat.com/show_bug.cgi?id=1970624
alert: 'AggregatedAPIDown',
expr: |||
(1 - max by(name, namespace)(avg_over_time(aggregator_unavailable_apiservice[10m]))) * 100 < 70
|||,
},
],
},
{
name: 'prometheus',
rules: [
Expand Down