diff --git a/pipeline/inputs/elasticsearch.md b/pipeline/inputs/elasticsearch.md index 8532f3c89..6a7a98c1d 100644 --- a/pipeline/inputs/elasticsearch.md +++ b/pipeline/inputs/elasticsearch.md @@ -8,11 +8,12 @@ The plugin supports the following configuration parameters: | Key | Description | Default value | |:--------------------|:-----------------------------------------------------------------------------------------------------------------------------------------|:--------------| -| `buffer_chunk_size` | Set the buffer chunk size. | `512K` | -| `buffer_max_size` | Set the maximum size of buffer. | `4M` | -| `hostname` | Specify hostname or fully qualified domain name. This parameter can be used for "sniffing" (auto-discovery of) cluster node information. | `localhost` | -| `http2` | Enable HTTP/2 support. | `true` | -| `listen` | The address to listen on. | `0.0.0.0` | +| `buffer_chunk_size` | Set the buffer chunk size. Compatibility alias for `http_server.buffer_chunk_size`. | `512K` | +| `buffer_max_size` | Set the maximum size of buffer. Compatibility alias for `http_server.buffer_max_size`. | `4M` | +| `hostname` | Specify hostname or fully qualified domain name. This parameter can be used for "sniffing" (auto-discovery of) cluster node information. | `localhost` | +| `http2` | Enable HTTP/2 support. Compatibility alias for `http_server.http2`. | `true` | +| `http_server.workers` | Number of HTTP listener worker threads. | `1` | +| `listen` | The address to listen on. | `0.0.0.0` | | `meta_key` | Specify a key name for meta information. | `@meta` | | `port` | The port for Fluent Bit to listen on. | `9200` | | `tag_key` | Specify a key name for extracting as a tag. | `NULL` | diff --git a/pipeline/inputs/http.md b/pipeline/inputs/http.md index 14db92530..faa57c02a 100644 --- a/pipeline/inputs/http.md +++ b/pipeline/inputs/http.md @@ -8,9 +8,10 @@ The _HTTP_ input plugin lets Fluent Bit open an HTTP port that you can then rout | Key | Description | Default | |----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|-----------| | `add_remote_addr` | Adds a `REMOTE_ADDR` field to the record. The value of `REMOTE_ADDR` is the client's address, which is extracted from the `X-Forwarded-For` header. | `false` | -| `buffer_chunk_size` | This sets the chunk size for incoming JSON messages. These chunks are then stored and managed in the space available by `buffer_max_size`. | `512K` | -| `buffer_max_size` | Specify the maximum buffer size to receive a JSON message. | `4M` | -| `http2` | Enable HTTP/2 support. | `true` | +| `buffer_chunk_size` | This sets the chunk size for incoming JSON messages. These chunks are then stored and managed in the space available by `buffer_max_size`. Compatibility alias for `http_server.buffer_chunk_size`. | `512K` | +| `buffer_max_size` | Specify the maximum buffer size to receive a JSON message. Compatibility alias for `http_server.buffer_max_size`. | `4M` | +| `http2` | Enable HTTP/2 support. Compatibility alias for `http_server.http2`. | `true` | +| `http_server.workers` | Number of HTTP listener worker threads. | `1` | | `listen` | The address to listen on. | `0.0.0.0` | | `port` | The port for Fluent Bit to listen on. | `9880` | | `success_header` | Add an HTTP header key/value pair on success. Multiple headers can be set. For example, `X-Custom custom-answer`. | _none_ | diff --git a/pipeline/inputs/prometheus-remote-write.md b/pipeline/inputs/prometheus-remote-write.md index d7fdf02df..4123c8486 100644 --- a/pipeline/inputs/prometheus-remote-write.md +++ b/pipeline/inputs/prometheus-remote-write.md @@ -10,9 +10,10 @@ The _Prometheus remote write_ input plugin lets you ingest a payload in the Prom | Key | Description | Default | |----------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------| -| `buffer_chunk_size` | Sets the chunk size for incoming data. These chunks are then stored and managed in the space specified by `buffer_max_size`. | `512K` | -| `buffer_max_size` | Specifies the maximum buffer size to receive a request. | `4M` | -| `http2` | Enable HTTP/2 support. | `true` | +| `buffer_chunk_size` | Sets the chunk size for incoming data. These chunks are then stored and managed in the space specified by `buffer_max_size`. Compatibility alias for `http_server.buffer_chunk_size`. | `512K` | +| `buffer_max_size` | Specifies the maximum buffer size to receive a request. Compatibility alias for `http_server.buffer_max_size`. | `4M` | +| `http2` | Enable HTTP/2 support. Compatibility alias for `http_server.http2`. | `true` | +| `http_server.workers` | Number of HTTP listener worker threads. | `1` | | `listen` | The address to listen on. | `0.0.0.0` | | `port` | The port to listen on. | `8080` | | `successful_response_code` | Specifies the success response code. Supported values are `200`, `201`, and `204`. | `201` | diff --git a/pipeline/inputs/splunk.md b/pipeline/inputs/splunk.md index 003715249..1470248e2 100644 --- a/pipeline/inputs/splunk.md +++ b/pipeline/inputs/splunk.md @@ -8,9 +8,10 @@ This plugin uses the following configuration parameters: | Key | Description | Default | |---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------| -| `buffer_chunk_size` | Set the chunk size for incoming JSON messages. These chunks are then stored and managed in the space available by `buffer_max_size`. | `512K` | -| `buffer_max_size` | Set the maximum buffer size to receive a JSON message. | `4M` | -| `http2` | Enable HTTP/2 support. | `true` | +| `buffer_chunk_size` | Set the chunk size for incoming JSON messages. These chunks are then stored and managed in the space available by `buffer_max_size`. Compatibility alias for `http_server.buffer_chunk_size`. | `512K` | +| `buffer_max_size` | Set the maximum buffer size to receive a JSON message. Compatibility alias for `http_server.buffer_max_size`. | `4M` | +| `http2` | Enable HTTP/2 support. Compatibility alias for `http_server.http2`. | `true` | +| `http_server.workers` | Number of HTTP listener worker threads. | `1` | | `listen` | The address to listen on. | `0.0.0.0` | | `port` | The port for Fluent Bit to listen on. | `8088` | | `splunk_token` | Specify a Splunk token for HTTP HEC authentication. If multiple tokens are specified (with commas and no spaces), usage will be divided across each of the tokens. | _none_ |