Hi Team,
Need some advice regarding configuration options for file input. If we have multiple patterns for files to watch for, what are pros and cons for below options
- Configuring each file path pattern as a dedicated file module block
input {
file { //type1*
}
file { //type2*
}
}
- Configuring all patterns in single file module block.
input {
file { // [type1*,type2*]
}
}
Thanks in advance!