Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions pipeline/inputs/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
7 changes: 4 additions & 3 deletions pipeline/inputs/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_ |
Expand Down
7 changes: 4 additions & 3 deletions pipeline/inputs/prometheus-remote-write.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
7 changes: 4 additions & 3 deletions pipeline/inputs/splunk.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_ |
Expand Down
Loading