├── .github ├── CODEOWNERS ├── lint │ └── .yamllint.yaml ├── renovate.json ├── stale.yml └── workflows │ ├── lint-yaml.yaml │ └── pre-commit-check.yaml ├── .pint.hcl ├── .pre-commit-config.yaml ├── README.md ├── pint └── pint └── rules ├── alerts.md ├── blackbox-exporter ├── alerts.yaml └── kustomization.yaml ├── blocky ├── alerts.yaml └── kustomization.yaml ├── cert-manager ├── alerts.yaml └── kustomization.yaml ├── coredns ├── alerts.yaml └── kustomization.yaml ├── discord-stock-ticker ├── alerts.yaml └── kustomization.yaml ├── flux ├── alerts.yaml ├── kustomization.yaml └── podmonitor.yaml ├── kustomization.yaml ├── lidarr ├── alerts.yaml └── kustomization.yaml ├── loki ├── alerts.yaml ├── kustomization.yaml └── rules.yaml ├── minio ├── alerts.yaml └── kustomization.yaml ├── nut-exporter ├── alerts.yaml └── kustomization.yaml ├── postgres-exporter ├── alerts.yaml └── kustomization.yaml ├── promtail ├── alerts.yaml ├── kustomization.yaml └── rules.yaml ├── qbittorrent ├── alerts.yaml └── kustomization.yaml ├── radarr ├── alerts.yaml └── kustomization.yaml ├── redis-exporter ├── alerts.yaml └── kustomization.yaml ├── snmp-exporter ├── alerts.yaml └── kustomization.yaml ├── sonarr ├── alerts.yaml └── kustomization.yaml ├── speedtest-exporter ├── alerts.yaml └── kustomization.yaml ├── thanos ├── compact │ ├── alerts.yaml │ └── kustomization.yaml ├── kustomization.yaml ├── query │ ├── alerts.yaml │ ├── kustomization.yaml │ └── rules.yaml ├── receive │ ├── alerts.yaml │ ├── kustomization.yaml │ └── rules.yaml ├── replicate │ ├── alerts.yaml │ └── kustomization.yaml ├── ruler │ ├── alerts.yaml │ └── kustomization.yaml ├── sidecar │ ├── alerts.yaml │ └── kustomization.yaml └── store-gateway │ ├── alerts.yaml │ ├── kustomization.yaml │ └── rules.yaml └── traefik ├── alerts.yaml ├── kustomization.yaml └── servicemonitor.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/lint/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.github/lint/.yamllint.yaml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/lint-yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.github/workflows/lint-yaml.yaml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.github/workflows/pre-commit-check.yaml -------------------------------------------------------------------------------- /.pint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.pint.hcl -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/README.md -------------------------------------------------------------------------------- /pint/pint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/pint/pint -------------------------------------------------------------------------------- /rules/alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/alerts.md -------------------------------------------------------------------------------- /rules/blackbox-exporter/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/blackbox-exporter/alerts.yaml -------------------------------------------------------------------------------- /rules/blackbox-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/blackbox-exporter/kustomization.yaml -------------------------------------------------------------------------------- /rules/blocky/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/blocky/alerts.yaml -------------------------------------------------------------------------------- /rules/blocky/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/blocky/kustomization.yaml -------------------------------------------------------------------------------- /rules/cert-manager/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/cert-manager/alerts.yaml -------------------------------------------------------------------------------- /rules/cert-manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/cert-manager/kustomization.yaml -------------------------------------------------------------------------------- /rules/coredns/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/coredns/alerts.yaml -------------------------------------------------------------------------------- /rules/coredns/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/coredns/kustomization.yaml -------------------------------------------------------------------------------- /rules/discord-stock-ticker/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/discord-stock-ticker/alerts.yaml -------------------------------------------------------------------------------- /rules/discord-stock-ticker/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/discord-stock-ticker/kustomization.yaml -------------------------------------------------------------------------------- /rules/flux/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/flux/alerts.yaml -------------------------------------------------------------------------------- /rules/flux/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/flux/kustomization.yaml -------------------------------------------------------------------------------- /rules/flux/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/flux/podmonitor.yaml -------------------------------------------------------------------------------- /rules/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/kustomization.yaml -------------------------------------------------------------------------------- /rules/lidarr/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/lidarr/alerts.yaml -------------------------------------------------------------------------------- /rules/lidarr/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/lidarr/kustomization.yaml -------------------------------------------------------------------------------- /rules/loki/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/loki/alerts.yaml -------------------------------------------------------------------------------- /rules/loki/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/loki/kustomization.yaml -------------------------------------------------------------------------------- /rules/loki/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/loki/rules.yaml -------------------------------------------------------------------------------- /rules/minio/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/minio/alerts.yaml -------------------------------------------------------------------------------- /rules/minio/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/minio/kustomization.yaml -------------------------------------------------------------------------------- /rules/nut-exporter/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/nut-exporter/alerts.yaml -------------------------------------------------------------------------------- /rules/nut-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/nut-exporter/kustomization.yaml -------------------------------------------------------------------------------- /rules/postgres-exporter/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/postgres-exporter/alerts.yaml -------------------------------------------------------------------------------- /rules/postgres-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/postgres-exporter/kustomization.yaml -------------------------------------------------------------------------------- /rules/promtail/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/promtail/alerts.yaml -------------------------------------------------------------------------------- /rules/promtail/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/promtail/kustomization.yaml -------------------------------------------------------------------------------- /rules/promtail/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/promtail/rules.yaml -------------------------------------------------------------------------------- /rules/qbittorrent/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/qbittorrent/alerts.yaml -------------------------------------------------------------------------------- /rules/qbittorrent/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/qbittorrent/kustomization.yaml -------------------------------------------------------------------------------- /rules/radarr/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/radarr/alerts.yaml -------------------------------------------------------------------------------- /rules/radarr/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/radarr/kustomization.yaml -------------------------------------------------------------------------------- /rules/redis-exporter/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/redis-exporter/alerts.yaml -------------------------------------------------------------------------------- /rules/redis-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/redis-exporter/kustomization.yaml -------------------------------------------------------------------------------- /rules/snmp-exporter/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/snmp-exporter/alerts.yaml -------------------------------------------------------------------------------- /rules/snmp-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/snmp-exporter/kustomization.yaml -------------------------------------------------------------------------------- /rules/sonarr/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/sonarr/alerts.yaml -------------------------------------------------------------------------------- /rules/sonarr/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/sonarr/kustomization.yaml -------------------------------------------------------------------------------- /rules/speedtest-exporter/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/speedtest-exporter/alerts.yaml -------------------------------------------------------------------------------- /rules/speedtest-exporter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/speedtest-exporter/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/compact/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/compact/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/compact/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/compact/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/query/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/query/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/query/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/query/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/query/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/query/rules.yaml -------------------------------------------------------------------------------- /rules/thanos/receive/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/receive/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/receive/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/receive/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/receive/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/receive/rules.yaml -------------------------------------------------------------------------------- /rules/thanos/replicate/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/replicate/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/replicate/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/replicate/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/ruler/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/ruler/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/ruler/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/ruler/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/sidecar/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/sidecar/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/sidecar/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/sidecar/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/store-gateway/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/store-gateway/alerts.yaml -------------------------------------------------------------------------------- /rules/thanos/store-gateway/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/store-gateway/kustomization.yaml -------------------------------------------------------------------------------- /rules/thanos/store-gateway/rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/thanos/store-gateway/rules.yaml -------------------------------------------------------------------------------- /rules/traefik/alerts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/traefik/alerts.yaml -------------------------------------------------------------------------------- /rules/traefik/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/traefik/kustomization.yaml -------------------------------------------------------------------------------- /rules/traefik/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jr0dd/prometheus-rules/HEAD/rules/traefik/servicemonitor.yaml --------------------------------------------------------------------------------