From a7cb76361b0c418a5e004fc1929df26378cff4ba Mon Sep 17 00:00:00 2001 From: Sertug17 <104278804+Sertug17@users.noreply.github.com> Date: Thu, 20 Aug 2026 14:24:08 +0300 Subject: [PATCH] fix: rename RethNodeDown alert to AbstractExternalNodeDown The default PrometheusRule alert was named RethNodeDown with summary and description referencing 'Reth Node'. Abstract runs a zkSync-based external node (matterlabs/external-node), not Reth. This was a copy-paste artifact from a Reth-based chart template. Rename the alert and update annotations to correctly reference the Abstract External Node. Fixes #34 --- charts/abstract-node/templates/prometheusrules.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/abstract-node/templates/prometheusrules.yaml b/charts/abstract-node/templates/prometheusrules.yaml index af4acd4..6c0a88d 100644 --- a/charts/abstract-node/templates/prometheusrules.yaml +++ b/charts/abstract-node/templates/prometheusrules.yaml @@ -23,13 +23,13 @@ spec: {{- if .Values.metrics.prometheusRule.default }} - name: {{ include "common.names.fullname" $ }}-default rules: - - alert: RethNodeDown + - alert: AbstractExternalNodeDown expr: up{job="{{ include "common.names.fullname" . }}"} == 0 for: 5m labels: severity: critical annotations: - summary: Reth Node {{ printf "{{ $labels.instance }}" }} down - description: Reth Node {{ printf "{{ $labels.instance }}" }} is down + summary: Abstract External Node {{ printf "{{ $labels.instance }}" }} down + description: Abstract External Node {{ printf "{{ $labels.instance }}" }} is down {{- end }} {{- end }} \ No newline at end of file