From 8001a6a9718b85f92d958bc71fb8ffb3efa4bfd8 Mon Sep 17 00:00:00 2001 From: Furkan Date: Fri, 8 Nov 2024 20:27:08 +0300 Subject: [PATCH] fix: fix deprecated `daq_job_type` in example `healthcheck.toml` --- configs/examples/healthcheck.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/examples/healthcheck.toml b/configs/examples/healthcheck.toml index ef590e9..a1b1b72 100644 --- a/configs/examples/healthcheck.toml +++ b/configs/examples/healthcheck.toml @@ -2,7 +2,7 @@ daq_job_type = "DAQJobHealthcheck" # Alert if restarted [[healthcheck_stats]] -daq_job_type = "n1081b" +daq_job_type = "DAQJobN1081B" stats_key = "restart_stats" interval = "1m" alert_if_interval_is = "satisfied" @@ -10,7 +10,7 @@ alert_info = { message = "N1081B job crashed and got restarted!", severity = "er # Alert if no message out [[healthcheck_stats]] -daq_job_type = "n1081b" +daq_job_type = "DAQJobN1081B" stats_key = "message_out_stats" interval = "2m" alert_if_interval_is = "unsatisfied"