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

Bug 1846707: changing KubeQuotaExceeded to KubeQuotaFullyUsed #854

Merged
merged 3 commits into from
Jul 16, 2020
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -7,3 +7,4 @@
- [#800](https://github.com/openshift/cluster-monitoring-operator/pull/800) Collect metrics and implement alerting rules for Thanos querier.
- [#804](https://github.com/openshift/cluster-monitoring-operator/pull/804) Allow user workload monitoring configuration ConfigMap to be created in openshift-user-workload-monitoring namespace.
- [#736](https://github.com/openshift/cluster-monitoring-operator/pull/800) Expose /api/v1/rules endpoint of Thanos Querier via the 9093 TCP port with multi-tenancy support.
- [#854](https://github.com/openshift/cluster-monitoring-operator/pull/854) Change KubeQuotaExceeded to KubeQuotaFullyUsed
6 changes: 3 additions & 3 deletions assets/prometheus-k8s/rules.yaml
Expand Up @@ -1343,17 +1343,17 @@ spec:
for: 5m
labels:
severity: warning
- alert: KubeQuotaExceeded
- alert: KubeQuotaFullyUsed
annotations:
message: Namespace {{ $labels.namespace }} is using {{ $value | humanizePercentage }} of its {{ $labels.resource }} quota.
expr: |
kube_resourcequota{namespace=~"(openshift-.*|kube-.*|default|logging)",job="kube-state-metrics", type="used"}
/ ignoring(instance, job, type)
(kube_resourcequota{namespace=~"(openshift-.*|kube-.*|default|logging)",job="kube-state-metrics", type="hard"} > 0)
> 0.90
>= 1
for: 15m
labels:
severity: warning
severity: info
- name: kubernetes-storage
rules:
- alert: KubePersistentVolumeFillingUp
Expand Down
4 changes: 2 additions & 2 deletions jsonnet/jsonnetfile.lock.json
Expand Up @@ -79,8 +79,8 @@
"subdir": ""
}
},
"version": "d353b060f1965cc8ec2dce00c6dd2d565cb1825f",
"sum": "CcrZ6OPgNp8WWXtGqRGOdPm6XbRSvSRb9Dwqbzxe+QE="
"version": "9992325a3429a8975caa95bf0ead13804f76fd47",
"sum": "0uaxB7PnxVk6e8pgc/HXaReiDAAPBmkQCjzIcMV/BcM="
},
{
"source": {
Expand Down
4 changes: 2 additions & 2 deletions pkg/manifests/bindata.go

Large diffs are not rendered by default.