From 0cd356382ec8ea17eb3c71010b627432e214cd4e Mon Sep 17 00:00:00 2001 From: Patrick McCann Date: Tue, 1 Oct 2024 11:43:37 -0400 Subject: [PATCH] Update streamlit_app.py --- streamlit_app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/streamlit_app.py b/streamlit_app.py index d7957e7..c0c872c 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -91,6 +91,8 @@ def classify_module(module_name): return 'RTD Module' elif 'IdSystem' in module_name or 'userId' in module_name: return 'ID System' + elif 'Analytics' in module_name or 'analyticsAdapter' in module_name: + return 'Analytics Adapter' else: return 'Other' @@ -100,6 +102,7 @@ def extract_module_stats(data): 'Bid Adapter': Counter(), 'RTD Module': Counter(), 'ID System': Counter(), + 'Analytics Adapter': Counter(), 'Other': Counter() }