Skip to content
This repository was archived by the owner on Dec 14, 2024. It is now read-only.

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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