fluentd 1.12.2 → 1.13.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fluentd might be problematic. Click here for more details.

Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE/bug_report.yaml +69 -0
  3. data/.github/ISSUE_TEMPLATE/feature_request.yaml +38 -0
  4. data/.github/workflows/linux-test.yaml +1 -1
  5. data/.github/workflows/windows-test.yaml +19 -3
  6. data/.gitlab-ci.yml +19 -19
  7. data/CHANGELOG.md +153 -0
  8. data/CONTRIBUTING.md +2 -2
  9. data/MAINTAINERS.md +1 -1
  10. data/README.md +8 -5
  11. data/bin/fluentd +8 -1
  12. data/example/counter.conf +1 -1
  13. data/fluentd.gemspec +4 -3
  14. data/lib/fluent/command/cat.rb +19 -3
  15. data/lib/fluent/command/fluentd.rb +1 -2
  16. data/lib/fluent/command/plugin_generator.rb +42 -2
  17. data/lib/fluent/config.rb +1 -1
  18. data/lib/fluent/config/section.rb +5 -0
  19. data/lib/fluent/config/types.rb +15 -0
  20. data/lib/fluent/config/v1_parser.rb +3 -2
  21. data/lib/fluent/env.rb +2 -1
  22. data/lib/fluent/log.rb +1 -0
  23. data/lib/fluent/oj_options.rb +62 -0
  24. data/lib/fluent/plugin/file_wrapper.rb +49 -4
  25. data/lib/fluent/plugin/formatter.rb +1 -0
  26. data/lib/fluent/plugin/formatter_json.rb +9 -7
  27. data/lib/fluent/plugin/in_http.rb +10 -0
  28. data/lib/fluent/plugin/in_tail.rb +150 -39
  29. data/lib/fluent/plugin/in_tail/position_file.rb +15 -1
  30. data/lib/fluent/plugin/out_forward.rb +14 -33
  31. data/lib/fluent/plugin/output.rb +11 -9
  32. data/lib/fluent/plugin/parser_csv.rb +2 -2
  33. data/lib/fluent/plugin/parser_json.rb +2 -3
  34. data/lib/fluent/plugin/parser_syslog.rb +2 -2
  35. data/lib/fluent/plugin/service_discovery.rb +0 -15
  36. data/lib/fluent/plugin/storage_local.rb +1 -1
  37. data/lib/fluent/plugin_helper/http_server/router.rb +1 -1
  38. data/lib/fluent/plugin_helper/server.rb +4 -2
  39. data/lib/fluent/plugin_helper/service_discovery.rb +39 -1
  40. data/lib/fluent/plugin_helper/service_discovery/manager.rb +11 -5
  41. data/lib/fluent/plugin_helper/socket_option.rb +2 -2
  42. data/lib/fluent/supervisor.rb +15 -0
  43. data/lib/fluent/system_config.rb +14 -0
  44. data/lib/fluent/test/driver/storage.rb +30 -0
  45. data/lib/fluent/version.rb +1 -1
  46. data/templates/new_gem/fluent-plugin.gemspec.erb +3 -3
  47. data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
  48. data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
  49. data/test/command/test_cat.rb +99 -0
  50. data/test/command/test_plugin_generator.rb +2 -1
  51. data/test/config/test_section.rb +9 -0
  52. data/test/config/test_system_config.rb +46 -0
  53. data/test/config/test_types.rb +7 -0
  54. data/test/plugin/in_tail/test_io_handler.rb +4 -4
  55. data/test/plugin/in_tail/test_position_file.rb +54 -0
  56. data/test/plugin/out_forward/test_connection_manager.rb +0 -6
  57. data/test/plugin/test_file_wrapper.rb +115 -0
  58. data/test/plugin/test_in_forward.rb +59 -83
  59. data/test/plugin/test_in_http.rb +58 -40
  60. data/test/plugin/test_in_syslog.rb +66 -56
  61. data/test/plugin/test_in_tail.rb +329 -10
  62. data/test/plugin/test_in_tcp.rb +45 -32
  63. data/test/plugin/test_in_udp.rb +47 -33
  64. data/test/plugin/test_out_forward.rb +138 -105
  65. data/test/plugin/test_out_stream.rb +18 -8
  66. data/test/plugin/test_output.rb +15 -3
  67. data/test/plugin/test_output_as_buffered_backup.rb +2 -0
  68. data/test/plugin/test_parser_csv.rb +14 -0
  69. data/test/plugin/test_parser_syslog.rb +14 -0
  70. data/test/plugin_helper/http_server/test_route.rb +1 -1
  71. data/test/plugin_helper/service_discovery/test_manager.rb +1 -1
  72. data/test/plugin_helper/test_child_process.rb +1 -1
  73. data/test/plugin_helper/test_http_server_helper.rb +34 -27
  74. data/test/plugin_helper/test_server.rb +144 -139
  75. data/test/plugin_helper/test_service_discovery.rb +74 -14
  76. data/test/plugin_helper/test_socket.rb +16 -9
  77. data/test/test_config.rb +2 -1
  78. data/test/test_event_time.rb +2 -2
  79. data/test/test_oj_options.rb +55 -0
  80. data/test/test_output.rb +2 -2
  81. data/test/test_supervisor.rb +35 -0
  82. metadata +19 -9
  83. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -40
  84. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -23
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9be763d670c8f331be578f85392cc428502a275a370e3a2b6520a08f22861da8
4
- data.tar.gz: ffd8aaf0703bad823a2848b1f939d317bbe903ed6ae48196f4a84fc737db73fc
3
+ metadata.gz: b2f70ac4c7ffec54701aaf1e48416d2806881d39171a63c2eb84f3686a59cd59
4
+ data.tar.gz: b192b8229744e5fc00816c45b6a6e83bb1748d0eae1773394044907254fa6433
5
5
  SHA512:
6
- metadata.gz: 7fad389c0066167a21d41c654c2ec74501b21e2dcf35d120e34fff7084b641a9468dcefcf75679ba8e5de5391e4bd58bbd60cbb310d31e3e01119a80408936a5
7
- data.tar.gz: 8fbd2fbe2d88cb9c9cb35eabfea19706361225381775e08e0b5ee5adc8228b2e65f305d34410aa76d6cbbf773c8b3dd4a123da41f81e36fb294ef948b25ff98f
6
+ metadata.gz: 338cc5d35a89c042fdfa1a1817479fbfc2b88363619a5cb0cdf08a20a70942c52a561c538e70fb3b737eb7fa2d38bb77a43e993b3693b87bd300b43d64f8ac0c
7
+ data.tar.gz: aaace3c4450de3c4db7b6875e94e47b30e265f7370fcfcff7e15b9c4568913643fa53e3564e7b61237091e0bbf02fac21bdca93181c4109949e384b73fd072a1
@@ -0,0 +1,69 @@
1
+ name: Bug Report
2
+ description: Create a report with a procedure for reproducing the bug
3
+ body:
4
+ - type: markdown
5
+ attributes:
6
+ value: |
7
+ Check [CONTRIBUTING guideline](https://github.com/fluent/fluentd/blob/master/CONTRIBUTING.md) first and here is the list to help us investigate the problem.
8
+ - type: textarea
9
+ id: description
10
+ attributes:
11
+ label: Describe the bug
12
+ description: A clear and concise description of what the bug is
13
+ validations:
14
+ required: true
15
+ - type: textarea
16
+ id: reproduce
17
+ attributes:
18
+ label: To Reproduce
19
+ description: Steps to reproduce the behavior
20
+ validations:
21
+ required: true
22
+ - type: textarea
23
+ id: expected
24
+ attributes:
25
+ label: Expected behavior
26
+ description: A clear and concise description of what you expected to happen
27
+ validations:
28
+ required: true
29
+ - type: textarea
30
+ id: environment
31
+ attributes:
32
+ label: Your Environment
33
+ description: |
34
+ - Fluentd or td-agent version: `fluentd --version` or `td-agent --version`
35
+ - Operating system: `cat /etc/os-release`
36
+ - Kernel version: `uname -r`
37
+
38
+ Tip: If you hit the problem with older fluentd version, try latest version first.
39
+ value: |
40
+ - Fluentd version:
41
+ - TD Agent version:
42
+ - Operating system:
43
+ - Kernel version:
44
+ render: markdown
45
+ validations:
46
+ required: true
47
+ - type: textarea
48
+ id: configuration
49
+ attributes:
50
+ label: Your Configuration
51
+ description: |
52
+ Write your configuration here. Minimum reproducible fluentd.conf is recommended.
53
+ validations:
54
+ required: true
55
+ - type: textarea
56
+ id: logs
57
+ attributes:
58
+ label: Your Error Log
59
+ description: Write your ALL error log here
60
+ render: shell
61
+ validations:
62
+ required: true
63
+ - type: textarea
64
+ id: addtional-context
65
+ attributes:
66
+ label: Additional context
67
+ description: Add any other context about the problem here.
68
+ validations:
69
+ required: false
@@ -0,0 +1,38 @@
1
+ name: Feature request
2
+ description: Suggest an idea for this project
3
+ body:
4
+ - type: markdown
5
+ attributes:
6
+ value: |
7
+ Check [CONTRIBUTING guideline](https://github.com/fluent/fluentd/blob/master/CONTRIBUTING.md) first and here is the list to help us investigate the problem.
8
+ - type: textarea
9
+ id: description
10
+ attributes:
11
+ label: Is your feature request related to a problem? Please describe.
12
+ description: |
13
+ A clear and concise description of what the problem is.
14
+ Ex. I'm always frustrated when [...]
15
+ validations:
16
+ required: true
17
+ - type: textarea
18
+ id: solution
19
+ attributes:
20
+ label: Describe the solution you'd like
21
+ description: A clear and concise description of what you want to happen.
22
+ validations:
23
+ required: true
24
+ - type: textarea
25
+ id: alternative
26
+ attributes:
27
+ label: Describe alternatives you've considered
28
+ description: A clear and concise description of any alternative solutions or features you've considered.
29
+ validations:
30
+ required: true
31
+ - type: textarea
32
+ id: addtional-context
33
+ attributes:
34
+ label: Additional context
35
+ description: Add any other context or screenshots about the feature request here.
36
+ validations:
37
+ required: false
38
+
@@ -13,7 +13,7 @@ jobs:
13
13
  strategy:
14
14
  fail-fast: false
15
15
  matrix:
16
- ruby-version: ['3.0', '2.7', '2.6', '2.5']
16
+ ruby-version: ['3.0', '2.7', '2.6']
17
17
  os: [ubuntu-latest]
18
18
  experimental: [false]
19
19
  include:
@@ -9,13 +9,26 @@ on:
9
9
  jobs:
10
10
  test:
11
11
  runs-on: ${{ matrix.os }}
12
-
12
+ continue-on-error: ${{ matrix.experimental }}
13
13
  strategy:
14
14
  fail-fast: false
15
15
  matrix:
16
- ruby-version: ['3.0', '2.7', '2.6', '2.5']
16
+ ruby-version: ['2.7', '2.6']
17
17
  os:
18
18
  - windows-latest
19
+ experimental: [false]
20
+ include:
21
+ - ruby-version: '3.0.1'
22
+ os: windows-latest
23
+ experimental: true
24
+ # On Ruby 3.0, we need to use fiddle 1.0.8 or later to retrieve correct
25
+ # error code. In addition, we have to specify the path of fiddle by RUBYLIB
26
+ # because RubyInstaller loads Ruby's bundled fiddle before initializing gem.
27
+ # See also:
28
+ # * https://github.com/ruby/fiddle/issues/72
29
+ # * https://bugs.ruby-lang.org/issues/17813
30
+ # * https://github.com/oneclick/rubyinstaller2/blob/8225034c22152d8195bc0aabc42a956c79d6c712/lib/ruby_installer/build/dll_directory.rb
31
+ ruby-lib-opt: RUBYLIB=%RUNNER_TOOL_CACHE%/Ruby/3.0.1/x64/lib/ruby/gems/3.0.0/gems/fiddle-1.0.8/lib
19
32
 
20
33
  name: Unit testing with Ruby ${{ matrix.ruby-version }} on ${{ matrix.os }}
21
34
  steps:
@@ -24,7 +37,10 @@ jobs:
24
37
  uses: ruby/setup-ruby@v1
25
38
  with:
26
39
  ruby-version: ${{ matrix.ruby-version }}
40
+ - name: Add Fiddle 1.0.8
41
+ if: ${{ matrix.ruby-version == '3.0.1' }}
42
+ run: gem install fiddle --version 1.0.8
27
43
  - name: Install dependencies
28
44
  run: ridk exec bundle install
29
45
  - name: Run tests
30
- run: bundle exec rake test TESTOPTS=-v
46
+ run: bundle exec rake test TESTOPTS=-v ${{ matrix.ruby-lib-opt }}
data/.gitlab-ci.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  .install-template:
2
2
  before_script:
3
- - gem update --system=2.7.8
3
+ - gem update --system
4
4
  - ruby -v
5
5
 
6
6
  .test-template:
@@ -13,34 +13,34 @@ stages:
13
13
  - build
14
14
  - tests
15
15
 
16
- 2-4-5:
17
- image: "ruby:2.4.5"
16
+ 2-6-6:
17
+ image: "ruby:2.6.6"
18
18
  stage: build
19
19
  extends: .install-template
20
20
  script:
21
21
  - bundle install --jobs=3 --retry=3
22
22
  cache:
23
- key: "$CI_COMMIT_REF_SLUG 2-4-5"
23
+ key: "$CI_COMMIT_REF_SLUG 2-6-6"
24
24
  paths:
25
25
 
26
- 2-5-5:
27
- image: "ruby:2.5.5"
26
+ 2-7-2:
27
+ image: "ruby:2.7.2"
28
28
  stage: build
29
29
  extends: .install-template
30
30
  script:
31
31
  - bundle install --jobs=3 --retry=3
32
32
  cache:
33
- key: "$CI_COMMIT_REF_SLUG 2-5-5"
33
+ key: "$CI_COMMIT_REF_SLUG 2-7-2"
34
34
  paths:
35
35
 
36
- 2-6-3:
37
- image: "ruby:2.6.3"
36
+ 3-0-0:
37
+ image: "ruby:3.0.0"
38
38
  stage: build
39
39
  extends: .install-template
40
40
  script:
41
41
  - bundle install --jobs=3 --retry=3
42
42
  cache:
43
- key: "$CI_COMMIT_REF_SLUG 2-6-3"
43
+ key: "$CI_COMMIT_REF_SLUG 3-0-0"
44
44
  paths:
45
45
 
46
46
  rubyhead:
@@ -54,39 +54,39 @@ rubyhead:
54
54
  paths:
55
55
  - ./*
56
56
 
57
- 2-4-5-test:
58
- image: "ruby:2.4.5"
57
+ 2-6-6-test:
58
+ image: "ruby:2.6.6"
59
59
  stage: tests
60
60
  allow_failure: true
61
61
  extends: .test-template
62
62
  script:
63
63
  - bundle exec rake test
64
64
  cache:
65
- key: "$CI_COMMIT_REF_SLUG 2-4-5"
65
+ key: "$CI_COMMIT_REF_SLUG 2-6-6"
66
66
  paths:
67
67
  - ./*
68
68
 
69
- 2-5-5-test:
70
- image: "ruby:2.5.5"
69
+ 2-7-2-test:
70
+ image: "ruby:2.7.2"
71
71
  stage: tests
72
72
  allow_failure: true
73
73
  extends: .test-template
74
74
  script:
75
75
  - bundle exec rake test
76
76
  cache:
77
- key: "$CI_COMMIT_REF_SLUG 2-5-5"
77
+ key: "$CI_COMMIT_REF_SLUG 2-7-2"
78
78
  paths:
79
79
  - ./*
80
80
 
81
- 2-6-3-test:
82
- image: "ruby:2.6.3"
81
+ 3-0-0-test:
82
+ image: "ruby:3.0.0"
83
83
  stage: tests
84
84
  allow_failure: true
85
85
  extends: .test-template
86
86
  script:
87
87
  - bundle exec rake test
88
88
  cache:
89
- key: "$CI_COMMIT_REF_SLUG 2-6-3"
89
+ key: "$CI_COMMIT_REF_SLUG 3-0-0"
90
90
  paths:
91
91
  - ./*
92
92
 
data/CHANGELOG.md CHANGED
@@ -1,5 +1,158 @@
1
+ # v1.13.2
2
+
3
+ ## Release v1.13.2 - 2021/07/12
4
+
5
+ ### Enhancement
6
+
7
+ * fluent-plugin-generate: Storage plugin was supported.
8
+ https://github.com/fluent/fluentd/pull/3426
9
+ * parser_json: Added support to customize configuration of oj options.
10
+ Use `FLUENT_OJ_OPTION_BIGDECIMAL_LOAD`, `FLUENT_OJ_OPTION_MAX_NESTING`,
11
+ `FLUENT_OJ_OPTION_MODE`, and `FLUENT_OJ_OPTION_USE_TO_JSON` environment
12
+ variable to configure it.
13
+ https://github.com/fluent/fluentd/pull/3315
14
+
15
+ ### Bug fix
16
+
17
+ * binlog_reader: Fixed a crash bug by missing "fluent/env" dependency.
18
+ https://github.com/fluent/fluentd/pull/3443
19
+ * Fixed a crash bug on outputting log at the early stage when parsing
20
+ config file. This is a regression since v1.13.0. If you use invalid
21
+ '@' prefix parameter, remove it as a workaround.
22
+ https://github.com/fluent/fluentd/pull/3451
23
+ * in_tail: Fixed a bug that when rotation is occurred, remaining lines
24
+ will be discarded if the throttling feature is enabled.
25
+ https://github.com/fluent/fluentd/pull/3390
26
+ * fluent-plugin-generate: Fixed a crash bug during gemspec generation.
27
+ It was unexpectedly introduced by #3305, thus this bug was a
28
+ regression since 1.12.3.
29
+ https://github.com/fluent/fluentd/pull/3444
30
+
31
+ ### Misc
32
+
33
+ * Fixed the runtime dependency version of http_parse.rb to 0.7.0.
34
+ It was fixed because false positive detection is occurred frequently
35
+ by security scanning tools.
36
+ https://github.com/fluent/fluentd/pull/3450
37
+
38
+ # v1.13.1
39
+
40
+ ## Release v1.13.1 - 2021/06/25
41
+
42
+ ### Bug fix
43
+
44
+ * out_forward: Fixed a race condition on handshake
45
+ It's caused by using a same unpacker from multiple threads.
46
+ https://github.com/fluent/fluentd/pull/3405
47
+ https://github.com/fluent/fluentd/pull/3406
48
+ * in_tail: Fixed to remove too much verbose debugging logs
49
+ It was unexpectedly introduced by #3185 log throttling feature.
50
+ https://github.com/fluent/fluentd/pull/3418
51
+ * Fixed not to echo back the provides path as is on a 404 error
52
+ There was a potential cross-site scripting vector even though
53
+ it is quite difficult to exploit.
54
+ https://github.com/fluent/fluentd/pull/3427
55
+
56
+ ### Misc
57
+
58
+ * Pretty print for Fluent::Config::Section has been supported
59
+ for debugging
60
+ https://github.com/fluent/fluentd/pull/3398
61
+ * CI: Dropped to run CI for Ruby 2.5
62
+ https://github.com/fluent/fluentd/pull/3412
63
+
64
+ # v1.13
65
+
66
+ ## Release v1.13.0 - 2021/05/29
67
+
68
+ ### Enhancement
69
+
70
+ * in_tail: Handle log throttling per file feature
71
+ https://github.com/fluent/fluentd/pull/3185
72
+ https://github.com/fluent/fluentd/pull/3364
73
+ https://github.com/fluent/fluentd/pull/3379
74
+ * Extend to support service discovery manager in simpler way
75
+ https://github.com/fluent/fluentd/pull/3299
76
+ https://github.com/fluent/fluentd/pull/3362
77
+ * in_http: HTTP GET requests has been supported
78
+ https://github.com/fluent/fluentd/pull/3373
79
+ * The log rotate settings in system configuration has been supported
80
+ https://github.com/fluent/fluentd/pull/3352
81
+
82
+ ### Bug fix
83
+
84
+ * Fix to disable `trace_instruction` when
85
+ `RubyVM::InstructionSequence` is available. It improves
86
+ compatibility with `truffleruby` some extent.
87
+ https://github.com/fluent/fluentd/pull/3376
88
+ * in_tail: Safely skip files which are used by another process on
89
+ Windows. It improves exception handling about
90
+ `ERROR_SHARING_VIOLATION` on Windows.
91
+ https://github.com/fluent/fluentd/pull/3378
92
+ * fluent-cat: the issue resending secondary file in specific format
93
+ has been fixed
94
+ https://github.com/fluent/fluentd/pull/3368
95
+ * in_tail: Shutdown immediately & safely even if reading huge files
96
+ Note that `skip_refresh_on_startup` must be enabled.
97
+ https://github.com/fluent/fluentd/pull/3380
98
+
99
+ ### Misc
100
+
101
+ * example: Change a path to backup_path in counter_server correctly
102
+ https://github.com/fluent/fluentd/pull/3359
103
+ * README: Update link to community forum to discuss.fluentd.org
104
+ https://github.com/fluent/fluentd/pull/3360
105
+
1
106
  # v1.12
2
107
 
108
+ ## Release v1.12.4 - 2021/05/26
109
+
110
+ ### Bug fix
111
+
112
+ * in_tail: Fix a bug that refresh_watcher fails to handle file rotations
113
+
114
+ ## Release v1.12.3 - 2021/04/23
115
+
116
+ ### Enhancement
117
+
118
+ * plugin_helper: Allow TLS to use keep-alive socket option
119
+ https://github.com/fluent/fluentd/pull/3308
120
+
121
+ ### Bug fix
122
+
123
+ * parser_csv, parser_syslog: Fix a naming conflict on parser_type
124
+ https://github.com/fluent/fluentd/pull/3302
125
+ * in_tail: Fix incorrect error code & message on Windows
126
+ https://github.com/fluent/fluentd/pull/3325
127
+ https://github.com/fluent/fluentd/pull/3329
128
+ https://github.com/fluent/fluentd/pull/3331
129
+ https://github.com/fluent/fluentd/pull/3337
130
+ * in_tail: Fix a crash bug on catching a short-lived log
131
+ https://github.com/fluent/fluentd/pull/3328
132
+ * storage_local: Fix position file corruption issue on concurrent gracefulReloads
133
+ https://github.com/fluent/fluentd/pull/3335
134
+ * Fix incorrect warnings about ${chunk_id} with out_s3
135
+ https://github.com/fluent/fluentd/pull/3339
136
+ * TLS Server: Add peer information to error log message
137
+ https://github.com/fluent/fluentd/pull/3330
138
+
139
+ ### Misc
140
+
141
+ * fluent-plugin-generate: add note about plugin name
142
+ https://github.com/fluent/fluentd/pull/3303
143
+ * fluent-plugin-generate: Use same depended gem version with fluentd
144
+ https://github.com/fluent/fluentd/pull/3305
145
+ * Fix some broken unit tests and improve CI's stability
146
+ https://github.com/fluent/fluentd/pull/3304
147
+ https://github.com/fluent/fluentd/pull/3307
148
+ https://github.com/fluent/fluentd/pull/3312
149
+ https://github.com/fluent/fluentd/pull/3313
150
+ https://github.com/fluent/fluentd/pull/3314
151
+ https://github.com/fluent/fluentd/pull/3316
152
+ https://github.com/fluent/fluentd/pull/3336
153
+ * Permit to install with win32-service 2.2.0 on Windows
154
+ https://github.com/fluent/fluentd/pull/3343
155
+
3
156
  ## Release v1.12.2 - 2021/03/29
4
157
 
5
158
  ### Enhancement
data/CONTRIBUTING.md CHANGED
@@ -6,7 +6,7 @@ We'd love your contribution. Here are the guidelines!
6
6
 
7
7
  RESOURCES of [Official site](https://www.fluentd.org/) and [Fluentd documentation](https://docs.fluentd.org/) may help you.
8
8
 
9
- If you have further questions about Fluentd and plugins, please direct these to [Mailing List](https://groups.google.com/forum/#!forum/fluentd).
9
+ If you have further questions about Fluentd and plugins, please direct these to [Community Forum](https://discuss.fluentd.org/).
10
10
  Don't use Github issue for asking questions. Here are examples:
11
11
 
12
12
  - I installed xxx plugin but it doesn't work. Why?
@@ -16,7 +16,7 @@ Don't use Github issue for asking questions. Here are examples:
16
16
  We may close such questions to keep clear repository for developers and users.
17
17
  Github issue is mainly for submitting a bug report or feature request. See below.
18
18
 
19
- If you can't judge your case is a bug or not, use mailing list or slack first.
19
+ If you can't judge your case is a bug or not, use community forum or slack first.
20
20
 
21
21
  ## Found a bug?
22
22