Added a BUNCH of configs.

This commit is contained in:
2026-05-17 00:46:26 +02:00
parent 46e2494a6d
commit 292477d516
20 changed files with 22525 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
apiVersion: monitoring.coreos.com/v1
kind: PrometheusRule
metadata:
name: blackbox-alerts
namespace: monitoring
labels:
release: kube-prometheus-stack
spec:
groups:
- name: blackbox
rules:
- alert: DeviceDown
expr: probe_success == 0
for: 1m
labels:
severity: critical
annotations:
summary: "Device down"
description: "{{ $labels.instance }} is DOWN"
- alert: HighPing
expr: probe_duration_seconds > 0.5
for: 2m
labels:
severity: warning
annotations:
summary: "High ping"
description: "{{ $labels.instance }} has high latency"