Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(addon): Extract all URL Categories to category as a multi-value field #204

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Splunk_TA_paloalto/default/props.conf
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ EVAL-dest_name = replace(dest_hostname, "^([^:/]+).*", "\1")

FIELDALIAS-fwcloud_vendor_protocol = protocol as vendor_protocol

EVAL-category = coalesce(http_category, threat_category)
EVAL-category = coalesce(if(isnotnull(URLCategoryList), if(in(http_category, split(URLCategoryList, ",")), split(URLCategoryList, ","), split(http_category.",".URLCategoryList, ",")), http_category), threat_category)

LOOKUP-vendor_info_for_pan_config = pan_vendor_info_lookup sourcetype OUTPUT vendor,product,vendor_product,ids_type
LOOKUP-pan_threat_id = threat_lookup threat_id
Expand Down