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: 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