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] 2022-12-14 03:26:16 +00:00
parent f1f870eda1
commit e65fbd1feb
2 changed files with 24 additions and 6 deletions

View file

@ -3,8 +3,11 @@ groups:
rules: rules:
- alert: MemcachedDown - alert: MemcachedDown
annotations: annotations:
description: Memcached Instance {{ $labels.job }} / {{ $labels.instance }} is
down for more than 15 minutes.
message: | message: |
Memcached Instance {{ $labels.job }} / {{ $labels.instance }} is down for more than 15mins. Memcached Instance {{ $labels.job }} / {{ $labels.instance }} is down for more than 15 minutes.
summary: Memcached instance is down.
expr: | expr: |
memcached_up == 0 memcached_up == 0
for: 15m for: 15m
@ -12,8 +15,11 @@ groups:
severity: critical severity: critical
- alert: MemcachedConnectionLimitApproaching - alert: MemcachedConnectionLimitApproaching
annotations: annotations:
description: Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection
usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
message: | message: |
Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15m. Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
summary: Memcached max connection limit is approaching.
expr: | expr: |
(memcached_current_connections / memcached_max_connections * 100) > 80 (memcached_current_connections / memcached_max_connections * 100) > 80
for: 15m for: 15m
@ -21,8 +27,11 @@ groups:
severity: warning severity: warning
- alert: MemcachedConnectionLimitApproaching - alert: MemcachedConnectionLimitApproaching
annotations: annotations:
description: Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection
usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
message: | message: |
Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15m. Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
summary: Memcached connections at critical level.
expr: | expr: |
(memcached_current_connections / memcached_max_connections * 100) > 95 (memcached_current_connections / memcached_max_connections * 100) > 95
for: 15m for: 15m

View file

@ -23,8 +23,11 @@ Complete list of pregenerated alerts is available [here](https://github.com/moni
{{< code lang="yaml" >}} {{< code lang="yaml" >}}
alert: MemcachedDown alert: MemcachedDown
annotations: annotations:
description: Memcached Instance {{ $labels.job }} / {{ $labels.instance }} is down
for more than 15 minutes.
message: | message: |
Memcached Instance {{ $labels.job }} / {{ $labels.instance }} is down for more than 15mins. Memcached Instance {{ $labels.job }} / {{ $labels.instance }} is down for more than 15 minutes.
summary: Memcached instance is down.
expr: | expr: |
memcached_up == 0 memcached_up == 0
for: 15m for: 15m
@ -37,8 +40,11 @@ labels:
{{< code lang="yaml" >}} {{< code lang="yaml" >}}
alert: MemcachedConnectionLimitApproaching alert: MemcachedConnectionLimitApproaching
annotations: annotations:
description: Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection
usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
message: | message: |
Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15m. Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
summary: Memcached max connection limit is approaching.
expr: | expr: |
(memcached_current_connections / memcached_max_connections * 100) > 80 (memcached_current_connections / memcached_max_connections * 100) > 80
for: 15m for: 15m
@ -51,8 +57,11 @@ labels:
{{< code lang="yaml" >}} {{< code lang="yaml" >}}
alert: MemcachedConnectionLimitApproaching alert: MemcachedConnectionLimitApproaching
annotations: annotations:
description: Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection
usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
message: | message: |
Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15m. Memcached Instance {{ $labels.job }} / {{ $labels.instance }} connection usage is at {{ printf "%0.0f" $value }}% for at least 15 minutes.
summary: Memcached connections at critical level.
expr: | expr: |
(memcached_current_connections / memcached_max_connections * 100) > 95 (memcached_current_connections / memcached_max_connections * 100) > 95
for: 15m for: 15m