fluent-plugin-windows-eventlog 0.8.0 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 29f3b9ced1cd226756c2c6859e50cc974ec95e42a0efdc4b0e5544d69eac9c63
4
- data.tar.gz: 61875762c40f75317704cc62a476dc16d947363c7dca6bf167b8c7a23c86a095
3
+ metadata.gz: 25cad0076203839816776063f7ebdfbe60bc6fd3002c370c910dcb6d76a37c8a
4
+ data.tar.gz: 100a3cd449c6a1a464e9e62cb7801b2ff8de8237a32f723041e86a93b48323bc
5
5
  SHA512:
6
- metadata.gz: 1c126f6937f433079ddf703d141ecf73d1c3e1bd82e9fb605726109c20c97ab89f3307438da9fd62c80ef80770a39a884c3800c66874ca9519e680d17c9c9ba9
7
- data.tar.gz: f5e9178ed7c1b477977d61d4fe306745f2efb3203bf430a612c96e9a27f1186d9980ef7ea236b679ab05c805bca3426b70d77a41288458747e684eb20009609f
6
+ metadata.gz: 88a39e416e686644552c45de077318b58c4fe04c3760f8333c43903ed0c551bd208bd5873a122a6768b60b0d172145dca95ce1cd584ad25ca6a787719b513c62
7
+ data.tar.gz: 5644c45eb304831003847d235f8b9b37a54382b931937c0c5ad241933efab3b50c5da7bd71c3aa0f9474e97f6c0c8488d60f7868df98bcb64bf57db5ec31dde8
@@ -0,0 +1,36 @@
1
+ name: Test
2
+ on:
3
+ push:
4
+ branches: [master]
5
+ pull_request:
6
+ branches: [master]
7
+ jobs:
8
+ test:
9
+ runs-on: ${{ matrix.os }}
10
+ continue-on-error: ${{ matrix.experimental }}
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ ruby: [ '3.1', '3.0', '2.7', '2.6' ]
15
+ os:
16
+ - windows-latest
17
+ experimental: [false]
18
+ include:
19
+ - ruby: 'head'
20
+ os: windows-latest
21
+ experimental: true
22
+ name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
23
+ steps:
24
+ - uses: actions/checkout@v2
25
+ - uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: ${{ matrix.ruby }}
28
+ - name: Install
29
+ run: |
30
+ ruby --version
31
+ gem --version
32
+ gem install bundler rake
33
+ ridk exec bundle install --jobs 4 --retry 3
34
+ - name: Unit Test
35
+ run: |
36
+ bundle exec rake test
data/.gitignore CHANGED
@@ -1,14 +1,14 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /spec/reports/
8
- pkg/*
9
- /tmp/
10
- *.bundle
11
- *.so
12
- *.o
13
- *.a
14
- mkmf.log
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /spec/reports/
8
+ pkg/*
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/CHANGELOG.md CHANGED
@@ -1,70 +1,77 @@
1
- # Release v0.8.0 - 2020/09/16
2
- * in_windows_eventlog2: Support remoting access
3
-
4
- # Release v.0.7.1.rc1 - 2020/06/23
5
- * in_windows_eventlog2: Depends on nokogiri 1.11 series
6
-
7
- # Release v0.7.0 - 2020/05/22
8
- * in_windows_eventlog2: Support multilingual description
9
-
10
- # Release v0.6.0 - 2020/04/15
11
- * Make fluent-plugin-parser-winevt_xml plugin as optional dependency
12
- * in_windows_eventlog2: Render Ruby hash object directly by default
13
-
14
- # Release v0.5.4 - 2020/04/10
15
- * Permit using nokogiri 1.11.0
16
-
17
- # Release v0.5.3 - 2020/03/17
18
- * in_windows_eventlog2: Add Qualifiers key handling options
19
-
20
- # Release v0.5.2 - 2020/02/28
21
- * in_windows_eventlog2: Add parameter to read from all channels shortcut
22
-
23
- # Release v0.5.1 - 2020/02/26
24
- * in_windows_eventlog2: Add empty bookmark checking mechanism
25
-
26
- # Release v0.5.0 - 2020/02/17
27
- * in_windows_eventlog2: Support subscribe directive to handle read_existing_events paratemer each of channels.
28
- * in_windows_eventlog2: Depends on winevt_c v0.7.0 or later.
29
-
30
- # Release v0.4.6 - 2020/02/15
31
- * Fix winevt_c dependency to prevent fetching winevt_c v0.7.0 or later.
32
-
33
- # Release v0.4.5 - 2020/01/28
34
- * in_windows_eventlog2: Handle empty key case in parsing description method.
35
-
36
- # Release v0.4.4 - 2019/11/07
37
- * in_windows_eventlog: Improve error handling and logging when failed to open Windows Event Log.
38
-
39
- # Release v0.4.3 - 2019/10/31
40
- * in_windows_eventlog2: Handle privileges record on #parse_desc
41
- * in_windows_eventlog2: Raise error when handling invalid bookmark xml
42
-
43
- # Release v0.4.2 - 2019/10/16
44
- * in_windows_eventlog2: Handle invalid data error from `Winevt::EventLog::Query::Error`
45
-
46
- # Release v0.4.1 - 2019/10/11
47
- * in_windows_eventlog2: Add a missing ProcessID record
48
-
49
- # Release v0.4.0 - 2019/10/10
50
-
51
- * in_windows_eventlog2: Add new `render_as_xml` parameter to switch rendering as XML or Ruby Hash object
52
- * in_windows_eventlog2: Support rate limit with `rate_limit` option
53
- * parser_winevt_xml: Separate `parser_winevt_xml` plugin to other repository and published as Fluentd parser plugin
54
-
55
- # Release v0.3.0 - 2019/07/08
56
-
57
- * Add new `in_windows_eventlog2` plugin. This plugin uses newer windows event logging API.
58
- * Add `winevt_c` and `nokogiri` gem dependency for `in_windows_eventlog2`
59
-
60
- # Release v0.2.2 - 2017/09/08
61
-
62
- * in_windows_eventlog: Add `parse_description` parameter
63
-
64
- # Release v0.2.1 - 2017/06/06
65
-
66
- * in_windows_eventlog: Add `string_inserts` to the resulting record
67
-
68
- # Release v0.2.0 - 2017/03/08
69
-
70
- * in_windows_eventlog: Use v1 API
1
+ # Release v0.8.2 - 2022/09/26
2
+ * in_windows_eventlog2: Skip to subscribe non existent channels, not to stop Fluentd
3
+
4
+ # Release v0.8.1 - 2021/09/16
5
+ * in_windows_eventlog2: Add trace logs for debugging
6
+ * in_windows_eventlog2: Support event query parameter on Windows EventLog channel subscriptions
7
+
8
+ # Release v0.8.0 - 2020/09/16
9
+ * in_windows_eventlog2: Support remoting access
10
+
11
+ # Release v.0.7.1.rc1 - 2020/06/23
12
+ * in_windows_eventlog2: Depends on nokogiri 1.11 series
13
+
14
+ # Release v0.7.0 - 2020/05/22
15
+ * in_windows_eventlog2: Support multilingual description
16
+
17
+ # Release v0.6.0 - 2020/04/15
18
+ * Make fluent-plugin-parser-winevt_xml plugin as optional dependency
19
+ * in_windows_eventlog2: Render Ruby hash object directly by default
20
+
21
+ # Release v0.5.4 - 2020/04/10
22
+ * Permit using nokogiri 1.11.0
23
+
24
+ # Release v0.5.3 - 2020/03/17
25
+ * in_windows_eventlog2: Add Qualifiers key handling options
26
+
27
+ # Release v0.5.2 - 2020/02/28
28
+ * in_windows_eventlog2: Add parameter to read from all channels shortcut
29
+
30
+ # Release v0.5.1 - 2020/02/26
31
+ * in_windows_eventlog2: Add empty bookmark checking mechanism
32
+
33
+ # Release v0.5.0 - 2020/02/17
34
+ * in_windows_eventlog2: Support subscribe directive to handle read_existing_events paratemer each of channels.
35
+ * in_windows_eventlog2: Depends on winevt_c v0.7.0 or later.
36
+
37
+ # Release v0.4.6 - 2020/02/15
38
+ * Fix winevt_c dependency to prevent fetching winevt_c v0.7.0 or later.
39
+
40
+ # Release v0.4.5 - 2020/01/28
41
+ * in_windows_eventlog2: Handle empty key case in parsing description method.
42
+
43
+ # Release v0.4.4 - 2019/11/07
44
+ * in_windows_eventlog: Improve error handling and logging when failed to open Windows Event Log.
45
+
46
+ # Release v0.4.3 - 2019/10/31
47
+ * in_windows_eventlog2: Handle privileges record on #parse_desc
48
+ * in_windows_eventlog2: Raise error when handling invalid bookmark xml
49
+
50
+ # Release v0.4.2 - 2019/10/16
51
+ * in_windows_eventlog2: Handle invalid data error from `Winevt::EventLog::Query::Error`
52
+
53
+ # Release v0.4.1 - 2019/10/11
54
+ * in_windows_eventlog2: Add a missing ProcessID record
55
+
56
+ # Release v0.4.0 - 2019/10/10
57
+
58
+ * in_windows_eventlog2: Add new `render_as_xml` parameter to switch rendering as XML or Ruby Hash object
59
+ * in_windows_eventlog2: Support rate limit with `rate_limit` option
60
+ * parser_winevt_xml: Separate `parser_winevt_xml` plugin to other repository and published as Fluentd parser plugin
61
+
62
+ # Release v0.3.0 - 2019/07/08
63
+
64
+ * Add new `in_windows_eventlog2` plugin. This plugin uses newer windows event logging API.
65
+ * Add `winevt_c` and `nokogiri` gem dependency for `in_windows_eventlog2`
66
+
67
+ # Release v0.2.2 - 2017/09/08
68
+
69
+ * in_windows_eventlog: Add `parse_description` parameter
70
+
71
+ # Release v0.2.1 - 2017/06/06
72
+
73
+ * in_windows_eventlog: Add `string_inserts` to the resulting record
74
+
75
+ # Release v0.2.0 - 2017/03/08
76
+
77
+ * in_windows_eventlog: Use v1 API
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in fluent-plugin-winevtlog.gemspec
4
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in fluent-plugin-winevtlog.gemspec
4
+ gemspec