- Auditbeat Reference: other versions:
- Overview
- Getting started with Auditbeat
- Setting up and running Auditbeat
- Upgrading Auditbeat
- Configuring Auditbeat
- Specify which modules to run
- Specify general settings
- Reload the configuration dynamically
- Configure the internal queue
- Configure the output
- Configure index lifecycle management
- Specify SSL settings
- Filter and enhance the exported data
- Define processors
- Add cloud metadata
- Add fields
- Add labels
- Add the local time zone
- Add tags
- Decode JSON fields
- Drop events
- Drop fields from events
- Keep fields from events
- Rename fields from events
- Add Kubernetes metadata
- Add Docker metadata
- Add Host metadata
- Dissect strings
- DNS Reverse Lookup
- Add process metadata
- Parse data by using ingest node
- Enrich events with geoIP information
- Configure project paths
- Configure the Kibana endpoint
- Load the Kibana dashboards
- Load the Elasticsearch index template
- Configure logging
- Use environment variables in the configuration
- YAML tips and gotchas
- Regular expression support
- HTTP Endpoint
- auditbeat.reference.yml
- Modules
- Exported fields
- Monitoring Auditbeat
- Securing Auditbeat
- Troubleshooting
- Contributing to Beats
Regular expression support
editRegular expression support
editAuditbeat regular expression support is based on RE2.
Before using a regular expression in the config file, refer to the documentation to verify that the option you are setting accepts a regular expression.
We recommend that you wrap regular expressions in single quotation marks to work around YAML’s string escaping rules. For example, '^\[?[0-9][0-9]:?[0-9][0-9]|^[[:graph:]]+'
.
For more examples of supported regexp patterns, see Managing Multiline Messages. Although the examples pertain to Filebeat, the regexp patterns are applicable to other use cases.
The following patterns are supported:
Pattern | Description |
---|---|
|
single character |
|
any character |
|
character class |
|
negated character class |
|
ASCII character class |
|
negated ASCII character class |
|
Perl character class |
|
negated Perl character class |
|
Unicode character class (one-letter name) |
|
Unicode character class |
|
negated Unicode character class (one-letter name) |
|
negated Unicode character class |
|
|
|
|
|
zero or more |
|
one or more |
|
zero or one |
|
|
|
|
|
exactly |
|
zero or more |
|
one or more |
|
zero or one |
|
|
|
|
|
exactly |
|
numbered capturing group (submatch) |
|
named & numbered capturing group (submatch) |
|
non-capturing group |
|
set flags within current group, non-capturing |
|
set flags during re, non-capturing |
|
case-insensitive (default false) |
|
multi-line mode: |
|
let |
|
ungreedy: swap meaning of |
|
at beginning of text or line ( |
|
at end of text (like |
|
at beginning of text |
|
at ASCII word boundary ( |
|
not at ASCII word boundary |
|
at end of text |
|
bell (same as |
|
form feed (same as |
|
horizontal tab (same as |
|
newline (same as |
|
carriage return (same as |
|
vertical tab character (same as |
|
literal |
|
octal character code (up to three digits) |
|
two-digit hex character code |
|
hex character code |
|
literal text |
|
alphanumeric (same as |
|
alphabetic (same as |
|
ASCII (same as |
|
blank (same as |
|
control (same as |
|
digits (same as |
|
graphical (same as |
|
lower case (same as |
|
printable (same as |
|
punctuation (same as |
|
whitespace (same as |
|
upper case (same as |
|
word characters (same as |
|
hex digit (same as |
|
digits (same as |
|
not digits (same as |
|
whitespace (same as |
|
not whitespace (same as |
|
word characters (same as |
|
not word characters (same as |