From d78530fd0ac7923f3e243bc0c117fc0984917f70 Mon Sep 17 00:00:00 2001 From: Laura Sandoval Date: Fri, 3 Apr 2026 14:24:58 -0600 Subject: [PATCH 1/2] add dsn --- imap_processing/ialirt/calculate_ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imap_processing/ialirt/calculate_ingest.py b/imap_processing/ialirt/calculate_ingest.py index 9eb1f7d8b..8455e275e 100644 --- a/imap_processing/ialirt/calculate_ingest.py +++ b/imap_processing/ialirt/calculate_ingest.py @@ -6,7 +6,7 @@ logger = logging.getLogger(__name__) -STATIONS = ["Kiel", "UKSA"] +STATIONS = ["Kiel", "UKSA", "tlmrelay"] def packets_created(start_file_creation: datetime, lines: list) -> dict: From 95d7b808357e294dd8ff56d8f98a0125cf21e3c1 Mon Sep 17 00:00:00 2001 From: Laura Sandoval Date: Mon, 6 Apr 2026 09:20:37 -0600 Subject: [PATCH 2/2] add test --- .../tests/ialirt/unit/test_calculate_ingest.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/imap_processing/tests/ialirt/unit/test_calculate_ingest.py b/imap_processing/tests/ialirt/unit/test_calculate_ingest.py index a17b0d004..6bed9233c 100644 --- a/imap_processing/tests/ialirt/unit/test_calculate_ingest.py +++ b/imap_processing/tests/ialirt/unit/test_calculate_ingest.py @@ -32,6 +32,14 @@ def test_packets_created(): "last_data_received": [], "rate_kbps": [], }, + "tlmrelay": { + "last_data_received": [ + "2026-01-01T00:00:00Z", + ], + "rate_kbps": [ + 0.0, + ], + }, } assert actual_output == expected