Overview
This filter type can filter for custom attributes.
Specifically, you can enter a key to compare, and then a value to apply if the filter is matched.
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: custom_attributes_filter |
type |
Select (or enter) custom-attributes. This parameter is required. Review the following example: type: custom-attributes |
negate |
You can use this parameter pass logs that do not meet the pattern. In other words, to reverse the effect of the filter, set this parameter to true.
This parameter is optional. Review the following example: negate: true |
key |
Enter a key to identify a record or value. This parameter is optional. Review the following example: key: service |
value |
Enter a value for the filter to match. In other words, the value you enter will determine the data that passes through the filter.
This parameter is optional. Review the following example: value: billing |
Review Sample Configuration
Review the following sample configuration:
- name: custom_attributes_filter type: custom-attributes key: service value: billing - name: negate_custom_attributes_filter type: custom-attributes key: component value: credithandler,debithandler negate: true - name: regex_custom_attributes_filter type: custom-attributes key: level pattern: "error|ERROR|problem|ERR|Err"