From 5ba7e701d57559485c51f8b7d1296181ac159fc8 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Tue, 29 Apr 2025 14:19:43 -0500 Subject: [PATCH] Add debug output for Cisco SSIDs and BSSID-to-SSID mapping in query_metrics --- enrichment/indexed_capture.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/enrichment/indexed_capture.py b/enrichment/indexed_capture.py index 1f640de..17a5042 100644 --- a/enrichment/indexed_capture.py +++ b/enrichment/indexed_capture.py @@ -143,6 +143,9 @@ class IndexedCapture: packets = self.get_packets_in_time_range(start_ts, end_ts) + print("[DEBUG] Cisco SSIDs indexed:", list(self.cisco_ssid_clients.keys())) + print("[DEBUG] BSSID-to-SSID map:", self.bssid_to_ssid) + # Build local windowed structures window_clients = defaultdict(set) window_aps = defaultdict(set)