Regular Expression
The Regex parser lets you define a custom Ruby regular expression that uses a named capture feature to define which content belongs to which key name.
Use Tail Multiline when you need to support regexes across multiple lines from a tail
. The Tail input plugin treats each line as a separate entity.
Security Warning: Onigmo is a backtracking regex engine. When using expensive regex patterns Onigmo can take a long time to perform pattern matching. Read "ReDoS" on OWASP for additional information.
Setting the format to regex requires a regex
configuration key.
Configuration Parameters
The regex parser supports the following configuration parameters:
Key | Description | Default Value |
---|---|---|
| If enabled, the parser ignores empty value of the record. |
|
Fluent Bit uses the Onigmo regular expression library on Ruby mode.
You can use only alphanumeric characters and underscore in group names. For example, a group name like (?<user-name>.*)
causes an error due to the invalid dash (-
) character. Use the Rubular web editor to test your expressions.
The following parser configuration example provides rules that can be applied to an Apache HTTP Server log entry:
As an example, review the following Apache HTTP Server log entry:
This log entry doesn't provide a defined structure for Fluent Bit. Enabling the proper parser can help to make a structured representation of the entry:
Last updated