...
Expand | ||
---|---|---|
| ||
😅 No lol - it’s not is it. In the first version of this component we did have more configuration fields on it. But taking a step back and thinking from an operations perspective it seemed like the most important field was the source directory. If I am an operations person, then this is what I need to look at if there is a problem. Everything else just seemed like noise. You can always change that: Custom fields |
Expand | ||
---|---|---|
| ||
The file matching logic is deliberately isolated in it’s own file which we can see here: https://bitbucket.org/interfaceware/fromfile/src/main/MatchRules.lua Why do we put this logic in it’s own file? It’s applying a concept call Separation of Concerns. We simplify code and make it easy to understand by separating it into its own file. Looking the code you can see that this code will only match files with the extensions hl7, log and txt. If you need to change it then you have a very simple obvious place to go. |
...