You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: administration/backpressure.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ The setting behaves similarly to the above scenario with `Mem_Buf_Limit` when th
44
44
45
45
When (default) `storage.pause_on_chunks_overlimit` is disabled, the input will not pause when the memory limit is reached. Instead, it will switch to only buffering logs in the filesystem. The disk spaced used for filesystem buffering can be limited with `storage.total_limit_size`.
46
46
47
-
Please consule the [Buffering & Storage](buffering-and-storage.md) docs for more information.
47
+
See the [Buffering & Storage](buffering-and-storage.md) docs for more information.
Note that we are sending the _curl_ command output to the _jq_ program which helps to make the JSON data easy to read from the terminal. Fluent Bit don't aim to do JSON pretty-printing.
81
+
Note that we are sending the _curl_ command output to the _jq_ program which helps to make the JSON data easy to read from the terminal. Fluent Bit doesn't aim to do JSON pretty-printing.
82
82
83
83
### REST API Interface
84
84
@@ -110,15 +110,15 @@ The following definitions are key to understand:
| fluentbit_input_bytes_total | name: the name or alias for the input instance | The number of bytes of log records that this input instance has successfully ingested | counter | bytes |
112
112
| fluentbit_input_records_total | name: the name or alias for the input instance | The number of log records this input has successfully ingested | counter | records |
113
-
| fluentbit_output_dropped_records_total | name: the name or alias for the output instance | The number of log records that have been dropped by the output. This means they met an unrecoverable error or retries expired for their chunk. | counter | records |
114
-
| fluentbit_output_errors_total | name: the name or alias for the output instance | The number of chunks that have faced an error (either unrecoverable or retriable). This is the number of times a chunk has failed, and does not correspond with the number of error messages you see in the Fluent Bit log output. | counter | chunks |
115
-
| fluentbit_output_proc_bytes_total | name: the name or alias for the output instance | The number of bytes of log records that this output instance has *successfully* sent. This is the total byte size of all unique chunks sent by this output. If a record is not sent due to some error, then it will not count towards this metric.| counter | bytes |
116
-
| fluentbit_output_proc_records_total |name: the name or alias for the output instance | The number of log records that this output instance has *successfully* sent. This is the total record count of all unique chunks sent by this output. If a record is not successfully sent, it does not count towards this metric.| counter | records |
117
-
| fluentbit_output_retried_records_total | name: the name or alias for the output instance | The number of log records that experienced a retry. Note that this is calculated at the chunk level, the count increased when an entire chunk is marked for retry. An output plugin may or may not perform multiple actions that generate many error messages when uploading a single chunk. | counter | records |
118
-
| fluentbit_output_retries_failed_total | name: the name or alias for the output instance | The number of times that retries expired for a chunk. Each plugin configures a Retry_Limit which applies to chunks. Once the Retry_Limit has been reached for a chunk it is discarded and this metric is incremented. | counter | chunks |
119
-
| fluentbit_output_retries_total | name: the name or alias for the output instance | The number of times this output instance requested a retry for a chunk. | counter | chunks |
120
-
| fluentbit_uptime || The number of seconds that Fluent Bit has been running. | counter | seconds |
121
-
| process_start_time_seconds || The Unix Epoch time stamp for when Fluent Bit started..| guage| seconds |
113
+
| fluentbit_output_dropped_records_total | name: the name or alias for the output instance | The number of log records that have been dropped by the output. This means they met an unrecoverable error or retries expired for their chunk. | counter | records |
114
+
| fluentbit_output_errors_total | name: the name or alias for the output instance | The number of chunks that have faced an error (either unrecoverable or retriable). This is the number of times a chunk has failed, and does not correspond with the number of error messages you see in the Fluent Bit log output. | counter | chunks |
115
+
| fluentbit_output_proc_bytes_total | name: the name or alias for the output instance | The number of bytes of log records that this output instance has *successfully* sent. This is the total byte size of all unique chunks sent by this output. If a record is not sent due to some error, then it will not count towards this metric. | counter | bytes |
116
+
| fluentbit_output_proc_records_total | name: the name or alias for the output instance | The number of log records that this output instance has *successfully* sent. This is the total record count of all unique chunks sent by this output. If a record is not successfully sent, it does not count towards this metric. | counter | records |
117
+
| fluentbit_output_retried_records_total | name: the name or alias for the output instance | The number of log records that experienced a retry. Note that this is calculated at the chunk level, the count increased when an entire chunk is marked for retry. An output plugin may or may not perform multiple actions that generate many error messages when uploading a single chunk. | counter | records |
118
+
| fluentbit_output_retries_failed_total | name: the name or alias for the output instance | The number of times that retries expired for a chunk. Each plugin configures a Retry_Limit which applies to chunks. Once the Retry_Limit has been reached for a chunk it is discarded and this metric is incremented. | counter | chunks |
119
+
| fluentbit_output_retries_total | name: the name or alias for the output instance | The number of times this output instance requested a retry for a chunk. | counter | chunks |
120
+
| fluentbit_uptime || The number of seconds that Fluent Bit has been running. | counter | seconds |
121
+
| process_start_time_seconds || The Unix Epoch time stamp for when Fluent Bit started. | gauge| seconds |
122
122
123
123
124
124
The following are detailed descriptions for the metrics outputted in JSON format by `/api/v1/storage`.
Copy file name to clipboardExpand all lines: pipeline/outputs/splunk.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ This will create a payload that looks like:
125
125
}
126
126
```
127
127
128
-
For more information on the Splunk HEC payload format and all event meatadata Splunk accepts, see here: [http://docs.splunk.com/Documentation/Splunk/latest/Data/AboutHEC](http://docs.splunk.com/Documentation/Splunk/latest/Data/AboutHEC)
128
+
For more information on the Splunk HEC payload format and all event metadata Splunk accepts, see here: [http://docs.splunk.com/Documentation/Splunk/latest/Data/AboutHEC](http://docs.splunk.com/Documentation/Splunk/latest/Data/AboutHEC)
Copy file name to clipboardExpand all lines: pipeline/outputs/websocket.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ The **websocket** output plugin allows to flush your records into a WebSocket en
6
6
7
7
| Key | Description | default |
8
8
| :--- | :--- | :--- |
9
-
| Host | IP address or hostname of the target WebScoket Server | 127.0.0.1 |
10
-
| Port | TCP port of the target WebScoket Server | 80 |
9
+
| Host | IP address or hostname of the target WebSocket Server | 127.0.0.1 |
10
+
| Port | TCP port of the target WebSocket Server | 80 |
11
11
| URI | Specify an optional HTTP URI for the target websocket server, e.g: /something | / |
12
12
| Header | Add a HTTP header key/value pair. Multiple headers can be set. ||
13
13
| Format | Specify the data format to be used in the HTTP request body, by default it uses _msgpack_. Other supported formats are _json_, _json\_stream_ and _json\_lines_ and _gelf_. | msgpack |
0 commit comments