Overview
This filter type can filter and drop specified JSON fields from the incoming logs.
Review Parameters
Review the following parameters that you can configure in the Edge Delta App:
YAML | Description |
name |
Enter a descriptive name for this filter. When you create a workflow, you will use this label to enter your filter into the workflow. This parameter is required. Review the following example: name: drop_some_fields |
type |
Select (or enter) drop-json-fields. This parameter is required. Review the following example: type: drop-json-fields |
field_paths |
Enter a dot-separated path of the field. The fields will be removed from the original content and not processed. This parameter is optional. Review the following example: field_paths: - "level" - "details" - "log.source" |
Review Sample Configuration
Review the following sample configuration:
filters: - name: drop_some_fields type: drop-json-fields field_paths: - "level" - "details" - "log.source"