You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This fixes issue #3133 by updating the regex pattern for fluent-bit binary detection
to better handle ANSI escape sequences and multiple null bytes between the version
string and "Fluent Bit" text. The change also makes the %s format specifier optional,
supporting all variations in fluent-bit binary signatures.
popey
linked a pull request
Mar 2, 2025
that will
close
this issue
This fixes issue #3133 by updating the regex pattern for fluent-bit binary detection
to better handle ANSI escape sequences and multiple null bytes between the version
string and "Fluent Bit" text. The change also makes the %s format specifier optional,
supporting all variations in fluent-bit binary signatures.
Signed-off-by: Alan Pope <[email protected]>
What would you like to be added:
Support some versions of fluent-bit in binary detection
1.7.0-dev-3 - 1.7.0-dev-9, 1.7.0-rc4 - 1.7.0-rc8 are not detected
Additional context:
OK : [NUL]1.7.0[NUL]%sFluent Bit
NG : [NUL]1.7.0[NUL]\x1b[1m[NUL]%sFluent Bit
OK : [NUL]1.7.0[NUL]Fluent Bit
NG : [NUL]1.7.0[NUL]\x1b[1m[NUL]%sFluent Bit
The text was updated successfully, but these errors were encountered: