diff --git a/docs/configuration/crds/v1beta1/fluentbit_types/index.html b/docs/configuration/crds/v1beta1/fluentbit_types/index.html
index cceab7c5a..06dfa28c5 100644
--- a/docs/configuration/crds/v1beta1/fluentbit_types/index.html
+++ b/docs/configuration/crds/v1beta1/fluentbit_types/index.html
@@ -44,7 +44,7 @@
annotations (map[string]string, optional) Default: -">
-
+
-
+
@@ -651,7 +651,7 @@
FluentbitSpec
healthCheck (*HealthCheck, optional)
Available in Logging operator version 4.4 and later.
Default: -
FluentbitStatus
FluentbitStatus defines the resource status for FluentbitAgent
FluentbitTLS
FluentbitTLS defines the TLS configs
enabled (*bool, required)
Default: -
secretName (string, optional)
Default: -
sharedKey (string, optional)
Default: -
FluentbitTCPOutput
FluentbitTCPOutput defines the TLS configs
json_date_key (string, optional)
Default: ts
Default: iso8601
Workers (*int, optional)
Available in Logging operator version 4.4 and later.
Default: -
FluentbitNetwork
FluentbitNetwork defines network configuration for fluentbit
connectTimeout (*uint32, optional)
Sets the timeout for connecting to an upstream
Default: 10
connectTimeoutLogError (*bool, optional)
On connection timeout, specify if it should log an error. When disabled, the timeout is logged as a debug message
Default: true
dnsMode (string, optional)
Sets the primary transport layer protocol used by the asynchronous DNS resolver for connections established
Default: UDP, UDP or TCP
dnsPreferIpv4 (*bool, optional)
Prioritize IPv4 DNS results when trying to establish a connection
Default: false
dnsResolver (string, optional)
Select the primary DNS resolver type
Default: ASYNC, LEGACY or ASYNC
keepalive (*bool, optional)
Whether or not TCP keepalive is used for the upstream connection
Default: true
keepaliveIdleTimeout (*uint32, optional)
How long in seconds a TCP keepalive connection can be idle before being recycled
Default: 30
keepaliveMaxRecycle (*uint32, optional)
How many times a TCP keepalive connection can be used before being recycled
Default: 0, disabled
sourceAddress (string, optional)
Specify network address (interface) to use for connection and data traffic.
Default: disabled
BufferStorage
BufferStorage is the Service Section Configuration of fluent-bit
storage.path (string, optional)
Set an optional location in the file system to store streams and chunks of data. If this parameter is not set, Input plugins can only use in-memory buffering.
Default: -
storage.sync (string, optional)
Configure the synchronization mode used to store the data into the file system. It can take the values normal or full.
Default: normal
storage.checksum (string, optional)
Enable the data integrity check when writing and reading data from the filesystem. The storage layer uses the CRC32 algorithm.
Default: Off
storage.backlog.mem_limit (string, optional)
If storage.path is set, Fluent Bit will look for data chunks that were not delivered and are still in the storage layer, these are called backlog data. This option configure a hint of maximum value of memory to use when processing these records.
Default: 5M
storage.metrics (string, optional)
Available in Logging operator version 4.4 and later.
If the http_server
option has been enabled in the main Service configuration section, this option registers a new endpoint where internal metrics of the storage layer can be consumed.
Default: Off
HealthCheck
Available in Logging operator version 4.4 and later.
HealthCheck configuration
hcErrorsCount (int, optional)
The error count to meet the unhealthy requirement, this is a sum for all output plugins in a defined HC_Period.
Default: 5
hcRetryFailureCount (int, optional)
The retry failure count to meet the unhealthy requirement, this is a sum for all output plugins in a defined HC_Period
Default: 5
hcPeriod (int, optional)
The time period (in seconds) to count the error and retry failure data point
Default: 60
InputTail defines FluentbitAgent tail input configuration The tail input plugin allows to monitor one or several text files. It has a similar behavior like tail -f shell command.
Specify the buffering mechanism to use. It can be memory or filesystem.
Default: memory
Set the buffer size for HTTP client when reading responses from Kubernetes API server. The value must be according to the Unit Size specification.
Default: 32k
Set the limit of the buffer size per monitored file. When a buffer needs to be increased (e.g: very long lines), this value is used to restrict how much the memory buffer can grow. If reading a file exceed this limit, the file is removed from the monitored file list. The value must be according to the Unit Size specification.
Default: Buffer_Chunk_Size
Pattern specifying a specific log files or multiple ones through the use of common wildcards.
Default: -
If enabled, it appends the name of the monitored file as part of the record. The value assigned becomes the key in the map.
Default: -
Set one or multiple shell patterns separated by commas to exclude files matching a certain criteria, e.g: exclude_path=.gz,.zip
Default: -
For new discovered files on start (without a database offset/position), read the content from the head of the file, not tail.
Default: -
The interval of refreshing the list of watched files in seconds.
Default: 60
Specify the number of extra time in seconds to monitor a file once is rotated in case some pending data is flushed.
Default: 5
Ignores files that have been last modified before this time in seconds. Supports m,h,d (minutes, hours,days) syntax. Default behavior is to read all specified files.
Default: -
When a monitored file reach it buffer capacity due to a very long line (Buffer_Max_Size), the default behavior is to stop monitoring that file. Skip_Long_Lines alter that behavior and instruct Fluent Bit to skip long lines and continue processing other lines that fits into the buffer size.
Default: Off
Specify the database file to keep track of monitored files and offsets.
Default: -
Set a default synchronization (I/O) method. Values: Extra, Full, Normal, Off. This flag affects how the internal SQLite engine do synchronization to disk, for more details about each option please refer to this section.
Default: Full
Specify that the database will be accessed only by Fluent Bit. Enabling this feature helps to increase performance when accessing the database but it restrict any external tool to query the content.
Default: true
sets the journal mode for databases (WAL). Enabling WAL provides higher performance. Note that WAL is not compatible with shared network file systems.
Default: WAL
Set a limit of memory that Tail plugin can use when appending data to the Engine. If the limit is reach, it will be paused; when the data is flushed it resumes.
Default: -
Specify the name of a parser to interpret the entry as a structured message.
Default: -
When a message is unstructured (no parser applied), it’s appended as a string under the key name log. This option allows to define an alternative name for that key.
Default: log
Set a tag (with regex-extract fields) that will be placed on lines read.
Default: -
Set a regex to extract fields from the file.
Default: -
If enabled, the plugin will try to discover multiline messages and use the proper parsers to compose the outgoing messages. Note that when this option is enabled the Parser option is not used.
Default: Off
Wait period time in seconds to process queued multiline messages
Default: 4
Name of the parser that machs the beginning of a multiline message. Note that the regular expression defined in the parser must include a group name (named capture)
Default: -
Optional-extra parser to interpret and structure multiline entries. This option can be used to define multiple parsers, e.g: Parser_1 ab1, Parser_2 ab2, Parser_N abN.
Default: -
If enabled, the plugin will recombine split Docker log lines before passing them to any parser as configured above. This mode cannot be used at the same time as Multiline.
Default: Off
Specify an optional parser for the first line of the docker multiline mode.
Default: -
Wait period time in seconds to flush queued unfinished split lines.
Default: 4
Specify one or multiple parser definitions to apply to the content. Part of the new Multiline Core support in 1.8
Default: ""
FilterKubernetes
FilterKubernetes Fluent Bit Kubernetes Filter allows to enrich your log files with Kubernetes metadata.
Match (string, optional)
Match filtered records (default:kube.*)
Default: kubernetes.*
Buffer_Size (string, optional)
Set the buffer size for HTTP client when reading responses from Kubernetes API server. The value must be according to the Unit Size specification. A value of 0 results in no limit, and the buffer will expand as-needed. Note that if pod specifications exceed the buffer limit, the API response will be discarded when retrieving metadata, and some kubernetes metadata will fail to be injected to the logs. If this value is empty we will set it “0”.
Default: “0”
Kube_URL (string, optional)
API Server end-point.
Default: https://kubernetes.default.svc:443
Kube_CA_File (string, optional)
CA certificate file (default:/var/run/secrets/kubernetes.io/serviceaccount/ca.crt)
Default: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
Kube_CA_Path (string, optional)
Absolute path to scan for certificate files
Default: -
Kube_Token_File (string, optional)
Token file (default:/var/run/secrets/kubernetes.io/serviceaccount/token)
Default: /var/run/secrets/kubernetes.io/serviceaccount/token
Kube_Token_TTL (string, optional)
Token TTL configurable ’time to live’ for the K8s token. By default, it is set to 600 seconds. After this time, the token is reloaded from Kube_Token_File or the Kube_Token_Command. (default:“600”)
Default: 600
Kube_Tag_Prefix (string, optional)
When the source records comes from Tail input plugin, this option allows to specify what’s the prefix used in Tail configuration. (default:kube.var.log.containers.)
Default: kubernetes.var.log.containers
Merge_Log (string, optional)
When enabled, it checks if the log field content is a JSON string map, if so, it append the map fields as part of the log structure. (default:Off)
Default: On
Merge_Log_Key (string, optional)
When Merge_Log is enabled, the filter tries to assume the log field from the incoming message is a JSON string message and make a structured representation of it at the same level of the log field in the map. Now if Merge_Log_Key is set (a string name), all the new structured fields taken from the original log content are inserted under the new key.
Default: -
Merge_Log_Trim (string, optional)
When Merge_Log is enabled, trim (remove possible \n or \r) field values.
Default: On
Merge_Parser (string, optional)
Optional parser name to specify how to parse the data contained in the log key. Recommended use is for developers or testing only.
Default: -
Keep_Log (string, optional)
When Keep_Log is disabled, the log field is removed from the incoming message once it has been successfully merged (Merge_Log must be enabled as well).
Default: On
tls.debug (string, optional)
Debug level between 0 (nothing) and 4 (every detail).
Default: -1
tls.verify (string, optional)
When enabled, turns on certificate validation when connecting to the Kubernetes API server.
Default: On
Use_Journal (string, optional)
When enabled, the filter reads logs coming in Journald format.
Default: Off
Cache_Use_Docker_Id (string, optional)
When enabled, metadata will be fetched from K8s when docker_id is changed.
Default: Off
Regex_Parser (string, optional)
Set an alternative Parser to process record Tag and extract pod_name, namespace_name, container_name and docker_id. The parser must be registered in a parsers file (refer to parser filter-kube-test as an example).
Default: -
K8S-Logging.Parser (string, optional)
Allow Kubernetes Pods to suggest a pre-defined Parser (read more about it in Kubernetes Annotations section)
Default: Off
K8S-Logging.Exclude (string, optional)
Allow Kubernetes Pods to exclude their logs from the log processor (read more about it in Kubernetes Annotations section).
Default: On
Labels (string, optional)
Include Kubernetes resource labels in the extra metadata.
Default: On
Annotations (string, optional)
Include Kubernetes resource annotations in the extra metadata.
Default: On
If set, Kubernetes meta-data can be cached/pre-loaded from files in JSON format in this directory, named as namespace-pod.meta
Default: -
If set, use dummy-meta data (for test/dev purposes)
Default: Off
DNS_Retries (string, optional)
DNS lookup retries N times until the network start working
Default: 6
DNS_Wait_Time (string, optional)
DNS lookup interval between network status checks
Default: 30
Use_Kubelet (string, optional)
This is an optional feature flag to get metadata information from kubelet instead of calling Kube Server API to enhance the log.
Default: Off
Kubelet_Port (string, optional)
kubelet port using for HTTP request, this only works when Use_Kubelet set to On
Default: 10250
Configurable TTL for K8s cached metadata. By default, it is set to 0 which means TTL for cache entries is disabled and cache entries are evicted at random when capacity is reached. In order to enable this option, you should set the number to a time interval. For example, set this value to 60 or 60s and cache entries which have been created more than 60s will be evicted.
Default: 0
FilterAws
FilterAws The AWS Filter Enriches logs with AWS Metadata.
imds_version (string, optional)
Specify which version of the instance metadata service to use. Valid values are ‘v1’ or ‘v2’ (default).
Default: v2
az (*bool, optional)
The availability zone (default:true).
Default: true
ec2_instance_id (*bool, optional)
The EC2 instance ID. (default:true)
Default: true
ec2_instance_type (*bool, optional)
The EC2 instance type. (default:false)
Default: false
private_ip (*bool, optional)
The EC2 instance private ip. (default:false)
Default: false
ami_id (*bool, optional)
The EC2 instance image id. (default:false)
Default: false
account_id (*bool, optional)
The account ID for current EC2 instance. (default:false)
Default: false
hostname (*bool, optional)
The hostname for current EC2 instance. (default:false)
Default: false
vpc_id (*bool, optional)
The VPC ID for current EC2 instance. (default:false)
Default: false
Match (string, optional)
Match filtered records (default:*)
Default: *
FilterModify
FilterModify The Modify Filter plugin allows you to change records using rules and conditions.
rules ([]FilterModifyRule, optional)
FluentbitAgent Filter Modification Rule
Default: -
conditions ([]FilterModifyCondition, optional)
FluentbitAgent Filter Modification Condition
Default: -
FilterModifyRule
FilterModifyRule The Modify Filter plugin allows you to change records using rules and conditions.
Set (*FilterKeyValue, optional)
Add a key/value pair with key KEY and value VALUE. If KEY already exists, this field is overwritten
Default: -
Add (*FilterKeyValue, optional)
Add a key/value pair with key KEY and value VALUE if KEY does not exist
Default: -
Remove (*FilterKey, optional)
Remove a key/value pair with key KEY if it exists
Default: -
Remove_wildcard (*FilterKey, optional)
Remove all key/value pairs with key matching wildcard KEY
Default: -
Remove_regex (*FilterKey, optional)
Remove all key/value pairs with key matching regexp KEY
Default: -
Rename (*FilterKeyValue, optional)
Rename a key/value pair with key KEY to RENAMED_KEY if KEY exists AND RENAMED_KEY does not exist
Default: -
Hard_rename (*FilterKeyValue, optional)
Rename a key/value pair with key KEY to RENAMED_KEY if KEY exists. If RENAMED_KEY already exists, this field is overwritten
Default: -
Copy (*FilterKeyValue, optional)
Copy a key/value pair with key KEY to COPIED_KEY if KEY exists AND COPIED_KEY does not exist
Default: -
Hard_copy (*FilterKeyValue, optional)
Copy a key/value pair with key KEY to COPIED_KEY if KEY exists. If COPIED_KEY already exists, this field is overwritten
Default: -
FilterModifyCondition
FilterModifyCondition The Modify Filter plugin allows you to change records using rules and conditions.
Key_exists (*FilterKey, optional)
Is true if KEY exists
Default: -
Key_does_not_exist (*FilterKeyValue, optional)
Is true if KEY does not exist
Default: -
A_key_matches (*FilterKey, optional)
Is true if a key matches regex KEY
Default: -
No_key_matches (*FilterKey, optional)
Is true if no key matches regex KEY
Default: -
Key_value_equals (*FilterKeyValue, optional)
Is true if KEY exists and its value is VALUE
Default: -
Key_value_does_not_equal (*FilterKeyValue, optional)
Is true if KEY exists and its value is not VALUE
Default: -
Key_value_matches (*FilterKeyValue, optional)
Is true if key KEY exists and its value matches VALUE
Default: -
Key_value_does_not_match (*FilterKeyValue, optional)
Is true if key KEY exists and its value does not match VALUE
Default: -
Matching_keys_have_matching_values (*FilterKeyValue, optional)
Is true if all keys matching KEY have values that match VALUE
Default: -
Matching_keys_do_not_have_matching_values (*FilterKeyValue, optional)
Is true if all keys matching KEY have values that do not match VALUE
Default: -
Operation
Operation Doc stub
Op (string, optional)
Default: -
Key (string, optional)
Default: -
Value (string, optional)
Default: -
FilterKey
key (string, optional)
Default: -
FilterKeyValue
key (string, optional)
Default: -
value (string, optional)
Default: -
VolumeMount
VolumeMount defines source and destination folders of a hostPath type pod mount
source (string, required)
Source folder
Default: -
destination (string, required)
Destination Folder
Default: -
readOnly (*bool, optional)
Mount Mode
Default: -
ForwardOptions
ForwardOptions defines custom forward output plugin options, see https://docs.fluentbit.io/manual/pipeline/outputs/forward
Time_as_Integer (bool, optional)
Default: -
Send_options (bool, optional)
Default: -
Require_ack_response (bool, optional)
Default: -
Tag (string, optional)
Default: -
Retry_Limit (string, optional)
Default: -
storage.total_limit_size (string, optional)
storage.total_limit_size
Limit the maximum number of Chunks in the filesystem for the current output logical destination.
Default: -
Workers (*int, optional)
Available in Logging operator version 4.4 and later.
Enables dedicated thread(s) for this output. Default value (2) is set since version 1.8.13. For previous versions is 0.
Default: -