1
0
Fork 0
mirror of https://github.com/monitoring-mixins/website.git synced 2024-12-14 11:37:31 +00:00

assets,site/content: daily assets regeneration

This commit is contained in:
github-actions[bot] 2020-11-04 03:17:26 +00:00
parent 6c059bd7c7
commit d6eb003559
3 changed files with 15 additions and 13 deletions

View file

@ -20,7 +20,7 @@
"links": [ ],
"panels": [
{
"datasource": "prometheus",
"datasource": "$datasource",
"description": "The number of certificates in the ready state.",
"fieldConfig": {
"defaults": {
@ -753,7 +753,7 @@
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": "prometheus",
"datasource": "$datasource",
"description": "Percent of the time that the CPU is being throttled. Higher is badderer. ",
"fieldConfig": {
"defaults": {
@ -862,7 +862,7 @@
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": "prometheus",
"datasource": "$datasource",
"description": "Memory utilisation and limits.",
"fieldConfig": {
"defaults": {
@ -996,7 +996,7 @@
"bars": false,
"dashLength": 10,
"dashes": false,
"datasource": "prometheus",
"datasource": "$datasource",
"description": "Network ingress/egress.",
"fieldConfig": {
"defaults": {

View file

@ -1,12 +1,13 @@
groups:
- name: sealed-secrets
rules:
- alert: SealedSecretsUnsealErrorRateHigh
- alert: SealedSecretsUnsealErrorHigh
annotations:
description: High rate of errors unsealing Sealed Secrets
description: High number of errors during unsealing Sealed Secrets in {{ $labels.namespace
}} namespace.
runbook_url: https://github.com/bitnami-labs/sealed-secrets
summary: Sealed Secrets Unseal Error Rate High
summary: Sealed Secrets Unseal Error High
expr: |
sum(rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
sum by (reason, namespace) (rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
labels:
severity: warning

View file

@ -18,16 +18,17 @@ Complete list of pregenerated alerts is available [here](https://github.com/moni
### sealed-secrets
##### SealedSecretsUnsealErrorRateHigh
##### SealedSecretsUnsealErrorHigh
{{< code lang="yaml" >}}
alert: SealedSecretsUnsealErrorRateHigh
alert: SealedSecretsUnsealErrorHigh
annotations:
description: High rate of errors unsealing Sealed Secrets
description: High number of errors during unsealing Sealed Secrets in {{ $labels.namespace
}} namespace.
runbook_url: https://github.com/bitnami-labs/sealed-secrets
summary: Sealed Secrets Unseal Error Rate High
summary: Sealed Secrets Unseal Error High
expr: |
sum(rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
sum by (reason, namespace) (rate(sealed_secrets_controller_unseal_errors_total{}[5m])) > 0
labels:
severity: warning
{{< /code >}}