Learn how to write an [EXTEND] section in a Parsing Rules file, and the syntax to use.
An EXTEND
section is used to chain your Parsing Rules logic to extend your existing default RULE
sections, which are added by a Content Package you installed from Marketplace. While optional to configure, an EXTEND
section runs immediately after the default RULE
section that it extends, and enables data manipulation without overriding or interfering with the existing vendor Parsing Rules. For more information on the RULE
section in Parsing Rules, see RULE.
EXTEND
syntax is derived from Cortex Query Language (XQL) with a few modifications as explained in the Parsing Rules file structure and syntax section. You can have multiple XQL statements, separated by a semicolon (;). Each statement creates a different extension.
Note
For more information on the XQL syntax, see Cortex XQL Language Reference.
A few more points to keep in mind when writing EXTEND
sections:
You can only extend a default rule that is not overridden in the
RULE
sections.A rule can only be extended once.
A
CONST
section that is defined in Default Rules cannot be used in the User Defined Rules when configuring anEXTEND
section.An
EXTEND
section must specify the full header of the rule it is extending. When you extend a rule that was added by a Content Package installed from Marketplace, theEXTEND
section uses the format[EXTEND:<rule name> content_id = "<pack id>"]
, where thecontent_id
comes from the Content Package that the extended rule belongs to.Example 93.You can see here the
EXTEND
section in User Defined Rules uses the full header of theRULE
it’s extending from Default Rules.Default Rules:
[RULE:parse_ngfw_hipmatch content_id = "IronNet"] alter _time = time_generated | call extract_common_ngfw_fields | call extract_hipmatch_only_fields | call common_post_processing;
User Defined Rules:
[EXTEND:parse_ngfw_hipmatch content_id = "IronNet"] alter source = json_extract_scalar(source, "$.string") | filter __firewall_type = "firewall.hipmatch";
When this rule is run, the default
RULE
section runs, and is immediately followed by theEXTEND
section. This is equivalent to running one singleRULE
section as follows:[RULE:parse_ngfw_hipmatch content_id = "IronNet"] alter _time = time_generated | call extract_common_ngfw_fields | call extract_hipmatch_only_fields | call common_post_processing | alter source = json_extract_scalar(source, "$.string") | filter __firewall_type = "firewall.hipmatch";