Filter that allows for defining a set of regular expressions
for including a value or excluding a value based on the expressions.
Depending on which config values are provided, the filtering
works differently.
If both the includes and excludes are defined in the config
then the value being matched must match at least one of the
patterns in the includes and cannot match any of the exclude
patterns.
If only includes are provided, the value must match at least
one of the patterns.
If only the excludes are provides, the value cannot match any
of the patterns.
Filter that allows for defining a set of regular expressions for including a value or excluding a value based on the expressions.
Depending on which config values are provided, the filtering works differently.
If both the
includes
andexcludes
are defined in the config then the value being matched must match at least one of the patterns in theincludes
and cannot match any of theexclude
patterns.If only
includes
are provided, the value must match at least one of the patterns.If only the
excludes
are provides, the value cannot match any of the patterns.