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: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ Fluentd Input plugin for the Windows Event Log using newer Windows Event Logging
35
35
render_as_xml false # default is false.
36
36
rate_limit 200 # default is -1(Winevt::EventLog::Subscribe::RATE_INFINITE).
37
37
# preserve_qualifiers_on_hash true # default is false.
38
+
# preserve_sid_on_hash false # default is true.
38
39
# read_all_channels false # default is false.
39
40
# description_locale en_US # default is nil. It means that system locale is used for obtaining description.
40
41
# refresh_subscription_interval 10m # default is nil. It specifies refresh interval for channel subscriptions.
@@ -86,6 +87,7 @@ Fluentd Input plugin for the Windows Event Log using newer Windows Event Logging
86
87
|`render_as_xml`| (option) Render Windows EventLog as XML or Ruby Hash object directly. Defaults to `false`.|
87
88
|`rate_limit`| (option) Specify rate limit to consume EventLog. This is the approximate maximum number of records read per second. If more than this value is read in a second, this stops reading and waits until the next `read_interval`. This value must be a multiple of 10. Default is `-1`(`Winevt::EventLog::Subscribe::RATE_INFINITE`) and this means there is no upper limit. The log flow rate for setting this is approximately as follows: `rate_limit / read_interval [logs/second]`|
88
89
|`preserve_qualifiers_on_hash`| (option) When set up it as true, this plugin preserves "Qualifiers" and "EventID" keys. When set up it as false, this plugin calculates actual "EventID" from "Qualifiers" and removing "Qualifiers". Default is `false`.|
90
+
|`preserve_sid_on_hash`| (option) When set up it as true, this plugin preserves "UserID" key which includes SID of users. When set up it as false, this plugin just eliminates "UserID". This option is only effective for hash format (render_as_xml false) . Default is `true`.|
89
91
|`read_all_channels`| (option) Read from all channels. Default is `false`|
90
92
|`description_locale`| (option) Specify description locale. Default is `nil`. See also: [Supported locales](https://github.com/fluent-plugins-nursery/winevt_c#multilingual-description)|
91
93
|`refresh_subscription_interval`|(option) It specifies refresh interval for channel subscriptions. Default is `nil`.|
0 commit comments