Skip to content

Commit

Permalink
update changelog and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ekneg54 committed Oct 7, 2023
1 parent 0ee3c62 commit 3db47df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
### Features

* add a preprocessor to enrich by systems env variables
* add option to define rules inline in pipeline config under processor configs `generic_rules` or `specific_rules`

### Improvements

Expand Down
2 changes: 2 additions & 0 deletions logprep/abc/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class Config(Component.Config):
"""List of rule locations to load rules from.
In addition to paths to file directories it is possible to retrieve rules from a URI.
For valid URI formats see :ref:`getters`.
As last option it is possible to define rules inline.
"""
generic_rules: List[str] = field(
validator=[
Expand All @@ -57,6 +58,7 @@ class Config(Component.Config):
"""List of rule locations to load rules from.
In addition to paths to file directories it is possible to retrieve rules from a URI.
For valid URI formats see :ref:`getters`.
As last option it is possible to define rules inline.
"""
tree_config: Optional[str] = field(
default=None, validator=[validators.optional(validators.instance_of(str))]
Expand Down

0 comments on commit 3db47df

Please sign in to comment.