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

View file

@ -1,12 +1,13 @@
groups: groups:
- name: sealed-secrets - name: sealed-secrets
rules: rules:
- alert: SealedSecretsUnsealErrorRateHigh - alert: SealedSecretsUnsealErrorHigh
annotations: 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 runbook_url: https://github.com/bitnami-labs/sealed-secrets
summary: Sealed Secrets Unseal Error Rate High summary: Sealed Secrets Unseal Error High
expr: | 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: labels:
severity: warning severity: warning

View file

@ -18,16 +18,17 @@ Complete list of pregenerated alerts is available [here](https://github.com/moni
### sealed-secrets ### sealed-secrets
##### SealedSecretsUnsealErrorRateHigh ##### SealedSecretsUnsealErrorHigh
{{< code lang="yaml" >}} {{< code lang="yaml" >}}
alert: SealedSecretsUnsealErrorRateHigh alert: SealedSecretsUnsealErrorHigh
annotations: 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 runbook_url: https://github.com/bitnami-labs/sealed-secrets
summary: Sealed Secrets Unseal Error Rate High summary: Sealed Secrets Unseal Error High
expr: | 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: labels:
severity: warning severity: warning
{{< /code >}} {{< /code >}}