Skip to content

ngsiem_parser_info

Returns detailed information for one or more NG-SIEM parsers in the

Added in version 4.13.0

ParameterTypeRequiredDefaultDescription
definitionsboolNotrueWhether to fetch the full definition for each parser. When C(true) (default), an additional API call is made per parser to When C(false), only the lightweight list metadata is returned.
limitintNo100Maximum number of parsers to return. Must be between 1 and 500.
namestrNoSubstring to match against parser names. This maps to the only supported parser query filter (C(name:~‘value’)),
offsetintNo0Starting index for pagination. Use with I(limit) to paginate through large result sets.
parser_idslistNoA list of parser IDs to get information about. Parser IDs are version-suffixed (e.g. C(abc123:1.0.0)). When provided, I(name), I(parser_type), and I(update_available) filters
parser_typestrNoFilter parsers by type. C(ootb) returns only built-in (out-of-the-box) parsers. C(custom) returns only custom parsers created in your tenant.
repositorystrNoparsers-repositoryThe name of the repository to query.
update_availableboolNoFilter parsers by whether a newer version is available.
- name: Get all parsers with full definitions
crowdstrike.falcon.ngsiem_parser_info:
- name: Get only custom parsers
crowdstrike.falcon.ngsiem_parser_info:
parser_type: custom
- name: Get parsers whose name contains 'watchguard'
crowdstrike.falcon.ngsiem_parser_info:
name: watchguard
- name: Get specific parsers by ID
crowdstrike.falcon.ngsiem_parser_info:
parser_ids:
- "10f55deaa2893f60b87af305f44f80bf:1.0.0"
- name: List parsers that have an update available (metadata only)
crowdstrike.falcon.ngsiem_parser_info:
update_available: true
definitions: false
- name: Get custom parsers using metadata only for a quick inventory
crowdstrike.falcon.ngsiem_parser_info:
parser_type: custom
definitions: false
limit: 50
KeyTypeDescription
parsers-
metaM