Skip to content

Commit a22cdf5

Browse files
authored
output: docs for default workers setting (#716)
* output: elasticsearch: add default for Workers Signed-off-by: lecaros <[email protected]> * output: file: add default for Workers Signed-off-by: lecaros <[email protected]> * output: forward: add default for Workers Signed-off-by: lecaros <[email protected]> * output: http: add default for Workers Signed-off-by: lecaros <[email protected]> * output: prometheus_remote_write: add default for Workers Signed-off-by: lecaros <[email protected]> * output: splunk: add default for Workers Signed-off-by: lecaros <[email protected]> * output: stackdriver: add default for Workers Signed-off-by: lecaros <[email protected]> * output: stdout: add default for Workers Signed-off-by: lecaros <[email protected]> * output: tcp: add default for Workers Signed-off-by: lecaros <[email protected]>
1 parent ce334c6 commit a22cdf5

File tree

9 files changed

+12
-3
lines changed

9 files changed

+12
-3
lines changed

pipeline/outputs/elasticsearch.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ The **es** output plugin, allows to ingest your records into an [Elasticsearch](
4343
| Current\_Time\_Index | Use current time for index generation instead of message record | Off |
4444
| Logstash\_Prefix\_Key | When included: the value in the record that belongs to the key will be looked up and over-write the Logstash\_Prefix for index generation. If the key/value is not found in the record then the Logstash\_Prefix option will act as a fallback. Nested keys are not supported \(if desired, you can use the nest filter plugin to remove nesting\) | |
4545
| Suppress\_Type\_Name | When enabled, mapping types is removed and `Type` option is ignored. Types are deprecated in APIs in [v7.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html). This options is for v7.0 or later. | Off |
46+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
4647

47-
> The parameters _index_ and _type_ can be confusing if you are new to Elastic, if you have used a common relational database before, they can be compared to the _database_ and _table_ concepts. Also see [the FAQ below](elasticsearch.md#faq-multiple-types)
48+
> The parameters _index_ and _type_ can be confusing if you are new to Elastic, if you have used a common relational database before, they can be compared to the _database_ and _table_ concepts. Also see [the FAQ below](elasticsearch.md#faq)
4849
4950
### TLS / SSL
5051

pipeline/outputs/file.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ The **file** output plugin allows to write the data received through the _input_
66

77
The plugin supports the following configuration parameters:
88

9-
| Key | Description |
10-
| :--- | :--- |
9+
| Key | Description | Default |
10+
| :--- | :--- | :--- |
1111
| Path | Directory path to store files. If not set, Fluent Bit will write the files on it's own positioned directory. note: this option was added on Fluent Bit v1.4.6 |
1212
| File | Set file name to store the records. If not set, the file name will be the _tag_ associated with the records. |
1313
| Format | The format of the file content. See also Format section. Default: out\_file. |
1414
| Mkdir | Recursively create output directory if it does not exist. Permissions set to 0755. |
15+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 1 |
1516

1617
## Format
1718

pipeline/outputs/forward.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The following parameters are mandatory for either Forward for Secure Forward mod
2121
| Send_options | Always send options (with "size"=count of messages) | False |
2222
| Require_ack_response | Send "chunk"-option and wait for "ack" response from server. Enables at-least-once and receiving server can control rate of traffic. (Requires Fluentd v0.14.0+ server) | False |
2323
| Compress | Set to "gzip" to enable gzip compression. Incompatible with Time_as_Integer=True and tags set dynamically using the [Rewrite Tag](https://app.gitbook.com/s/-LKKSx-3LBTCtaHbg0gl-887967055/pipeline/filters/rewrite-tag.md) filter. (Requires Fluentd v0.14.7+ server) | |
24+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
2425

2526
## Secure Forward Mode Configuration Parameters
2627

pipeline/outputs/http.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ The **http** output plugin allows to flush your records into a HTTP endpoint. Fo
2626
| gelf\_full\_message\_key | Specify the key to use for the `full` message in _gelf_ format | |
2727
| gelf\_level\_key | Specify the key to use for the `level` in _gelf_ format | |
2828
| successful\_response\_code | Specify what a successful HTTP response code is in case you need to retry for other HTTP codes (E.g. 204 where) | |
29+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
2930

3031
### TLS / SSL
3132

pipeline/outputs/prometheus-remote-write.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Important Note: The prometheus exporter only works with metric plugins, such as
1919
| header | Add a HTTP header key/value pair. Multiple headers can be set. | |
2020
| log_response_payload | Log the response payload within the Fluent Bit log | false |
2121
| add_label | This allows you to add custom labels to all metrics exposed through the prometheus exporter. You may have multiple of these fields | |
22+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
2223

2324
## Getting Started
2425

pipeline/outputs/splunk.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Connectivity, transport and authentication configuration properties:
2222
| http\_buffer\_size | Buffer size used to receive Splunk HTTP responses | 2M |
2323
| compress | Set payload compression mechanism. The only available option is `gzip`. | |
2424
| channel | Specify X-Splunk-Request-Channel Header for the HTTP Event Collector interface. | |
25+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
2526

2627
Content and Splunk metadata \(fields\) handling configuration properties:
2728

pipeline/outputs/stackdriver.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Before to get started with the plugin configuration, make sure to obtain the pro
2929
| tag\_prefix | Set the tag\_prefix used to validate the tag of logs with k8s resource type. Without this option, the tag of the log must be in format of k8s\_container\(pod/node\).\* in order to use the k8s\_container resource type. Now the tag prefix is configurable by this option \(note the ending dot\). | k8s\_container., k8s\_pod., k8s\_node. |
3030
| severity\_key | Specify the name of the key from the original record that contains the severity information. | |
3131
| autoformat\_stackdriver\_trace | Rewrite the _trace_ field to include the projectID and format it for use with Cloud Trace. When this flag is enabled, the user can get the correct result by printing only the traceID (usually 32 characters). | false |
32+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
3233

3334
### Configuration File
3435

pipeline/outputs/standard-output.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The **stdout** output plugin allows to print to the standard output the data rec
99
| Format | Specify the data format to be printed. Supported formats are _msgpack_ _json_, _json\_lines_ and _json\_stream_. | msgpack |
1010
| json\_date\_key | Specify the name of the time key in the output record. To disable the time key just set the value to `false`. | date |
1111
| json\_date\_format | Specify the format of the date. Supported formats are _double_, _epoch_ and _iso8601_ \(eg: _2018-05-30T09:39:52.000681Z_\) | double |
12+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 1 |
1213

1314
### Command Line
1415

pipeline/outputs/tcp-and-tls.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ The **tcp** output plugin allows to send records to a remote TCP server. The pay
1111
| Format | Specify the data format to be printed. Supported formats are _msgpack_ _json_, _json\_lines_ and _json\_stream_. | msgpack |
1212
| json\_date\_key | Specify the name of the time key in the output record. To disable the time key just set the value to `false`. | date |
1313
| json\_date\_format | Specify the format of the date. Supported formats are _double_, _epoch_ and _iso8601_ \(eg: _2018-05-30T09:39:52.000681Z_\) | double |
14+
| Workers | Enables dedicated thread(s) for this output. Default value is set since version 1.8.12. For previous versions is 0. | 2 |
1415

1516
## TLS Configuration Parameters
1617

0 commit comments

Comments
 (0)