feat(opensearch-web): replace top nav with collapsible sidebar, exten… - #15
Merged
Merged
Conversation
liamadale
force-pushed
the
feat/zeek-module-expansion
branch
from
April 15, 2026 22:43
c115fb7 to
e187e6a
Compare
liamadale
force-pushed
the
feat/zeek-module-expansion
branch
from
April 15, 2026 22:44
e187e6a to
6ba6e0b
Compare
…d to all 25 modules Replace the flat horizontal nav bar with a collapsible left sidebar grouped by protocol category (Core, Files & Certs, Authentication, Infrastructure, OT/SCADA, Diagnostic). Group expand/collapse state is persisted in localStorage; the sidebar itself can be collapsed to icon- only mode with tooltip fallback. Overview matrix gains collapsible column groups per category (non-core groups start collapsed). Modules without a src_ip field (pe, capture_loss) are excluded from the matrix and from IP pivot queries — run_cross_protocol_query and the ip_pivot route now check SUPPORTS_IP_FILTER before including a module. Template rendering for log_view, log_rows, and ip_pivot is now driven by WEB_COLUMNS instead of per-protocol if/elif chains, making new modules automatically appear without template edits. record_detail conditionally hides the FP filter button when SUPPORTS_FP=False. MODULE_PARAM_KEYS is extended for all 15 new modules. proto_icons and category_icons are lifted out of base.html into an inject_nav_data context processor in app.py so they are available to all templates. - Fix WEB_CATEGORY on FTP module: "core" → "infrastructure"
liamadale
force-pushed
the
feat/zeek-module-expansion
branch
from
April 15, 2026 22:48
6ba6e0b to
4a6f2bf
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…d to all 25 modules
Replace the flat horizontal nav bar with a collapsible left sidebar grouped by protocol category (Core, Files & Certs, Authentication, Infrastructure, OT/SCADA, Diagnostic). Group expand/collapse state is persisted in localStorage; the sidebar itself can be collapsed to icon- only mode with tooltip fallback.
Overview matrix gains collapsible column groups per category (non-core groups start collapsed). Modules without a src_ip field (pe, capture_loss) are excluded from the matrix and from IP pivot queries — run_cross_protocol_query and the ip_pivot route now check SUPPORTS_IP_FILTER before including a module.
Template rendering for log_view, log_rows, and ip_pivot is now driven by WEB_COLUMNS instead of per-protocol if/elif chains, making new modules automatically appear without template edits. record_detail conditionally hides the FP filter button when SUPPORTS_FP=False.
MODULE_PARAM_KEYS is extended for all 15 new modules. proto_icons and category_icons are lifted out of base.html into an inject_nav_data context processor in app.py so they are available to all templates.