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
Updating general layout and case for config options in systemd input plugin docs. Fixes#2214. (#2228)
* Updating general layout and case for config options in systemd input plugin docs. Fixes#2214.
Signed-off-by: Eric D. Schabell <[email protected]>
* Small wording fix for review suggestion.
Signed-off-by: Eric D. Schabell <[email protected]>
---------
Signed-off-by: Eric D. Schabell <[email protected]>
|`Path`| Optional path to the Systemd journal directory. If not set, the plugin uses default paths to read local-only logs.|_none_|
12
-
|`Max_Fields`| Set a maximum number of fields (keys) allowed per record. |`8000`|
13
-
|`Max_Entries`| When Fluent Bit starts, the Journal might have a high number of logs in the queue. To avoid delays and reduce memory usage, use this option to specify the maximum number of log entries that can be processed per round. Once the limit is reached, Fluent Bit will continue processing the remaining log entries once `journald` performs the notification. |`5000`|
14
-
|`Systemd_Filter`| Perform a query over logs that contain specific `journald` key/value pairs. For example, `_SYSTEMD_UNIT=UNIT`. The `Systemd_Filter` option can be specified multiple times in the input section to apply multiple filters. |_none_|
15
-
|`Systemd_Filter_Type`| Define the filter type when `Systemd_Filter` is specified multiple times. Allowed values:`And`, `Or`. With `And` a record is matched only when all of the `Systemd_Filter` have a match. With `Or` a record is matched when any `Systemd_Filter` has a match.|`Or`|
16
-
|`Tag`| The tag is used to route messages but on Systemd plugin there is an additional capability: if the tag includes a wildcard (`*`), it will be expanded with the Systemd Unit file (`_SYSTEMD_UNIT`, like `host.\* => host.UNIT_NAME`) or `unknown` (`host.unknown`) if `_SYSTEMD_UNIT` is missing.|_none_|
17
-
|`DB`| Specify the absolute path of a database file to keep track of the `journald` cursor.|_none_|
18
-
|`DB.Sync`| Set a default synchronization (I/O) method. Values: `Extra`, `Full`, `Normal`, and `Off`. This flag affects how the internal SQLite engine synchronizes to disk. For more details [SQL lite documentation](https://www.sqlite.org/pragma.html#pragma_synchronous). Available in Fluent Bit v1.4.6 and later.|`Full`|
19
-
|`Read_From_Tail`|Start reading new entries. Skip entries already stored in`journald`. |`Off`|
20
-
|`Lowercase`| Lowercase the `journald` field (key). |`Off`|
21
-
|`Strip_Underscores`| Remove the leading underscore of the `journald` field (key). For example, the `journald` field `_PID` becomes the key `PID`. |`Off`|
22
-
|`Threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
11
+
|`db`| Specify the absolute path of a database file to keep track of the `journald` cursor. |_none_|
12
+
|`db.sync`| Set a default synchronization (I/O) method. Values: `extra`, `full`, `normal`, and `off`. This flag affects how the internal SQLite engine synchronizes to disk. For more details [SQLite documentation](https://www.sqlite.org/pragma.html#pragma_synchronous). Available in Fluent Bit v1.4.6 and later.|`full`|
13
+
|`lowercase`| Lowercase the `journald` field (key). |`off`|
14
+
|`max_entries`| When Fluent Bit starts, the Journal might have a high number of logs in the queue. To avoid delays and reduce memory usage, use this option to specify the maximum number of log entries that can be processed per round. Once the limit is reached, Fluent Bit will continue processing the remaining log entries once `journald` performs the notification. |`5000`|
15
+
|`max_fields`| Set a maximum number of fields (keys) allowed per record. |`8000`|
16
+
|`path`| Optional path to the Systemd journal directory. If not set, the plugin uses default paths to read local-only logs. |_none_|
17
+
|`read_from_tail`| Start reading new entries. Skip entries already stored in `journald`. |`off`|
18
+
|`strip_underscores`| Remove the leading underscore of the `journald` field (key). For example, the `journald` field `_PID` becomes the key `PID`. |`off`|
19
+
|`systemd_filter`|Perform a query over logs that contain specific `journald` key/value pairs. For example, `_SYSTEMD_UNIT=UNIT`. The `systemd_filter` option can be specified multiple times in the input section to apply multiple filters.|_none_|
20
+
|`systemd_filter_type`| Define the filter type when `systemd_filter` is specified multiple times. Allowed values: `and`, `or`. With `and` a record is matched only when all `systemd_filter` have a match. With `or` a record is matched when any `systemd_filter` has a match.|`or`|
21
+
|`tag`| The tag is used to route messages but on Systemd plugin there is an additional capability: if the tag includes a wildcard (`*`), it will be expanded with the Systemd Unit file (`_SYSTEMD_UNIT`, like `host.* => host.UNIT_NAME`) or `unknown` (`host.unknown`) if `_SYSTEMD_UNIT` is missing.|_none_|
22
+
|`threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
0 commit comments