From ddd9e1cac35e244cab949a6c0e77e77d18216e42 Mon Sep 17 00:00:00 2001 From: george haff Date: Tue, 14 Jan 2025 16:15:30 -0500 Subject: [PATCH 1/2] prevent sircal from alerting on NSSP secondary signals --- ansible/templates/sir_complainsalot-params-prod.json.j2 | 8 +++++++- sir_complainsalot/params.json.template | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/ansible/templates/sir_complainsalot-params-prod.json.j2 b/ansible/templates/sir_complainsalot-params-prod.json.j2 index 7bb2d179a..a225e9d1a 100644 --- a/ansible/templates/sir_complainsalot-params-prod.json.j2 +++ b/ansible/templates/sir_complainsalot-params-prod.json.j2 @@ -44,7 +44,13 @@ }, "nssp": { "max_age":19, - "maintainers": [] + "maintainers": [], + "retired-signals": [ + "pct_ed_visits_combined_2023rvr", + "pct_ed_visits_covid_2023rvr", + "pct_ed_visits_influenza_2023rvr", + "pct_ed_visits_rsv_2023rvr", + ], }, "nhsn": { "max_age":19, diff --git a/sir_complainsalot/params.json.template b/sir_complainsalot/params.json.template index 64c4bee17..3170e0df9 100644 --- a/sir_complainsalot/params.json.template +++ b/sir_complainsalot/params.json.template @@ -44,7 +44,13 @@ }, "nssp": { "max_age":19, - "maintainers": [] + "maintainers": [], + "retired-signals": [ + "pct_ed_visits_combined_2023rvr", + "pct_ed_visits_covid_2023rvr", + "pct_ed_visits_influenza_2023rvr", + "pct_ed_visits_rsv_2023rvr", + ], } } } From 337e3e48f421f824459cc3b82bf3ed447dc89c9a Mon Sep 17 00:00:00 2001 From: george haff Date: Tue, 14 Jan 2025 16:46:20 -0500 Subject: [PATCH 2/2] JSON doesnt like trailing commas --- ansible/templates/sir_complainsalot-params-prod.json.j2 | 4 ++-- sir_complainsalot/params.json.template | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ansible/templates/sir_complainsalot-params-prod.json.j2 b/ansible/templates/sir_complainsalot-params-prod.json.j2 index a225e9d1a..0dc66608d 100644 --- a/ansible/templates/sir_complainsalot-params-prod.json.j2 +++ b/ansible/templates/sir_complainsalot-params-prod.json.j2 @@ -49,8 +49,8 @@ "pct_ed_visits_combined_2023rvr", "pct_ed_visits_covid_2023rvr", "pct_ed_visits_influenza_2023rvr", - "pct_ed_visits_rsv_2023rvr", - ], + "pct_ed_visits_rsv_2023rvr" + ] }, "nhsn": { "max_age":19, diff --git a/sir_complainsalot/params.json.template b/sir_complainsalot/params.json.template index 3170e0df9..cf784774f 100644 --- a/sir_complainsalot/params.json.template +++ b/sir_complainsalot/params.json.template @@ -49,8 +49,8 @@ "pct_ed_visits_combined_2023rvr", "pct_ed_visits_covid_2023rvr", "pct_ed_visits_influenza_2023rvr", - "pct_ed_visits_rsv_2023rvr", - ], + "pct_ed_visits_rsv_2023rvr" + ] } } }