fluentd-ui 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog.md +5 -0
  3. data/Gemfile.lock +1 -1
  4. data/app/controllers/api/settings_controller.rb +46 -16
  5. data/app/controllers/concerns/setting_concern.rb +1 -1
  6. data/app/controllers/fluentd/settings/filter_grep_controller.rb +9 -0
  7. data/app/controllers/fluentd/settings/filter_parser_controller.rb +9 -0
  8. data/app/controllers/fluentd/settings/filter_record_transformer_controller.rb +14 -0
  9. data/app/controllers/fluentd/settings/filter_stdout_controller.rb +9 -0
  10. data/app/javascript/packs/filter_grep_setting.js +39 -0
  11. data/app/javascript/packs/grep_container.js +53 -0
  12. data/app/javascript/packs/grep_pattern.js +43 -0
  13. data/app/javascript/packs/owned_plugin_form.js +9 -7
  14. data/app/javascript/packs/settings.js +34 -16
  15. data/app/models/concerns/fluentd/setting/configurable.rb +1 -0
  16. data/app/models/concerns/fluentd/setting/label.rb +11 -0
  17. data/app/models/concerns/fluentd/setting/plugin.rb +2 -0
  18. data/app/models/concerns/fluentd/setting/plugin_config.rb +34 -4
  19. data/app/models/concerns/fluentd/setting/section_config.rb +10 -2
  20. data/app/models/fluentd/agent/common.rb +97 -0
  21. data/app/models/fluentd/setting/config.rb +71 -0
  22. data/app/models/fluentd/setting/filter_grep.rb +38 -0
  23. data/app/models/fluentd/setting/filter_parser.rb +34 -0
  24. data/app/models/fluentd/setting/filter_record_transformer.rb +27 -0
  25. data/app/models/fluentd/setting/filter_stdout.rb +34 -0
  26. data/app/models/fluentd/setting/in_forward.rb +1 -0
  27. data/app/models/fluentd/setting/in_http.rb +1 -1
  28. data/app/models/fluentd/setting/in_monitor_agent.rb +1 -1
  29. data/app/models/fluentd/setting/in_syslog.rb +1 -1
  30. data/app/models/fluentd/setting/out_elasticsearch.rb +1 -0
  31. data/app/models/fluentd/setting/out_forward.rb +1 -1
  32. data/app/models/fluentd/setting/out_mongo.rb +1 -0
  33. data/app/models/fluentd/setting/out_s3.rb +1 -0
  34. data/app/models/fluentd/setting/out_stdout.rb +1 -1
  35. data/app/models/fluentd/setting/out_tdlog.rb +1 -1
  36. data/app/views/api/settings/_element.json.jbuilder +3 -1
  37. data/app/views/api/settings/index.json.jbuilder +10 -2
  38. data/app/views/api/settings/show.json.jbuilder +1 -1
  39. data/app/views/fluentd/settings/filter_grep/_form.html.haml +18 -0
  40. data/app/views/fluentd/settings/filter_record_transformer/_form.html.haml +20 -0
  41. data/app/views/fluentd/settings/in_tail/_form.html.haml +1 -0
  42. data/app/views/fluentd/settings/source_and_output.html.haml +46 -14
  43. data/app/views/shared/vue/_filter_grep_setting.html.haml +19 -0
  44. data/app/views/shared/vue/_grep_container.html.haml +32 -0
  45. data/app/views/shared/vue/_grep_pattern.html.haml +24 -0
  46. data/app/views/shared/vue/_setting.html.erb +2 -2
  47. data/config/locales/translation_en.yml +39 -10
  48. data/config/locales/translation_ja.yml +39 -10
  49. data/config/routes.rb +6 -0
  50. data/lib/fluentd-ui/version.rb +1 -1
  51. data/test/factories/fluentd.rb +4 -4
  52. data/test/factories/plugins.rb +2 -2
  53. data/test/factories/user.rb +2 -2
  54. data/test/fixtures/config/label.conf +15 -0
  55. data/test/fixtures/config/multi-label.conf +40 -0
  56. data/test/fixtures/config/simple.conf +12 -0
  57. data/test/models/fluentd/agent_common_test.rb +288 -0
  58. data/test/models/fluentd/setting/config_test.rb +98 -0
  59. data/test/support/configurable_daemon_settings.rb +1 -1
  60. data/test/system/fluentd/setting/filter_grep_test.rb +96 -0
  61. data/test/system/fluentd/setting/filter_parser_test.rb +13 -0
  62. data/test/system/fluentd/setting/filter_record_transformer_test.rb +30 -0
  63. data/test/system/fluentd/setting/filter_stdout_test.rb +13 -0
  64. data/test/system/source_and_output_test.rb +168 -19
  65. data/test/test_helper.rb +4 -0
  66. metadata +98 -55
  67. data/.rspec +0 -2
@@ -7,6 +7,7 @@ class Fluentd
7
7
 
8
8
  def common_options
9
9
  [
10
+ :label,
10
11
  :bind, :port
11
12
  ]
12
13
  end
@@ -23,7 +23,7 @@ class Fluentd
23
23
 
24
24
  def common_options
25
25
  [
26
- :bind, :port, :add_http_headers, :add_remote_addr
26
+ :label, :bind, :port, :add_http_headers, :add_remote_addr
27
27
  ]
28
28
  end
29
29
 
@@ -17,7 +17,7 @@ class Fluentd
17
17
 
18
18
  def common_options
19
19
  [
20
- :bind, :port, :tag
20
+ :label, :bind, :port, :tag
21
21
  ]
22
22
  end
23
23
  end
@@ -19,7 +19,7 @@ class Fluentd
19
19
 
20
20
  def common_options
21
21
  [
22
- :tag, :bind, :port
22
+ :label, :tag, :bind, :port
23
23
  ]
24
24
  end
25
25
 
@@ -26,6 +26,7 @@ class Fluentd
26
26
 
27
27
  def common_options
28
28
  [
29
+ :label,
29
30
  :pattern, :host, :port, :logstash_format,
30
31
  :index_name, :type_name,
31
32
  ]
@@ -33,7 +33,7 @@ class Fluentd
33
33
 
34
34
  def common_options
35
35
  [
36
- :pattern, :server, :secondary,
36
+ :label, :pattern, :server, :secondary,
37
37
  ]
38
38
  end
39
39
 
@@ -25,6 +25,7 @@ class Fluentd
25
25
 
26
26
  def common_options
27
27
  [
28
+ :label,
28
29
  :pattern, :host, :port, :database, :collection,
29
30
  :tag_mapped, :user, :password,
30
31
  ]
@@ -26,6 +26,7 @@ class Fluentd
26
26
 
27
27
  def common_options
28
28
  [
29
+ :label,
29
30
  :pattern,
30
31
  :s3_region, :s3_bucket, :use_ssl, :path,
31
32
  ]
@@ -26,7 +26,7 @@ class Fluentd
26
26
 
27
27
  def common_options
28
28
  [
29
- :pattern, :output_type
29
+ :label, :pattern, :output_type
30
30
  ]
31
31
  end
32
32
 
@@ -22,7 +22,7 @@ class Fluentd
22
22
 
23
23
  def common_options
24
24
  [
25
- :pattern, :apikey, :auto_create_table, :database, :table,
25
+ :label, :pattern, :apikey, :auto_create_table, :database, :table,
26
26
  ]
27
27
  end
28
28
 
@@ -1,4 +1,6 @@
1
- json.id element_id(element)
1
+ json.id element_id(current_label, element)
2
+ json.current_label current_label || "ROOT"
3
+ json.label element["@label"] || element["label"]
2
4
  json.name element.name
3
5
  json.type element["@type"] || element["type"]
4
6
  json.arg element.arg
@@ -1,3 +1,11 @@
1
- json.array! @config.elements do |elm|
2
- json.partial! "api/settings/element", element: elm
1
+ @config.group_by_label.each do |label_name, types|
2
+ json.set!(label_name) do
3
+ types.each do |type, elements|
4
+ json.set!(type) do
5
+ json.array!(elements) do |element|
6
+ json.partial! "api/settings/element", current_label: label_name, element: element
7
+ end
8
+ end
9
+ end
10
+ end
3
11
  end
@@ -1 +1 @@
1
- json.partial! "api/settings/element", element: @section
1
+ json.partial! "api/settings/element", current_label: params[:label], element: @target_element
@@ -0,0 +1,18 @@
1
+ = render "shared/setting_errors"
2
+
3
+ - # NOTE: plugin_setting_form_action_url is defined at SettingConcern
4
+ = form_with(model: setting, scope: "setting", url: plugin_setting_form_action_url(fluentd), local: true, class: "ignore-rails-error-div", builder: FluentdFormBuilder) do |f|
5
+ - setting.common_options.each do |key|
6
+ = f.field(key)
7
+
8
+ = render "shared/vue/filter_grep_setting", setting: setting
9
+
10
+ .card.card-body.bg-light
11
+ %h4{"data-toggle" => "collapse", "href" => "#advanced-setting"}
12
+ = icon('fa-caret-down')
13
+ = t('terms.advanced_setting')
14
+ #advanced-setting.collapse
15
+ - setting.advanced_options.each do |key|
16
+ = f.field(key)
17
+
18
+ = f.submit t('fluentd.common.finish'), class: "btn btn-lg btn-primary pull-right"
@@ -0,0 +1,20 @@
1
+ = render "shared/setting_errors"
2
+
3
+ - # NOTE: plugin_setting_form_action_url is defined at SettingConcern
4
+ = form_with(model: setting, scope: "setting", url: plugin_setting_form_action_url(fluentd), local: true, class: "ignore-rails-error-div", builder: FluentdFormBuilder) do |f|
5
+ - setting.common_options.each do |key|
6
+ = f.field(key)
7
+
8
+ .form-group
9
+ = f.label(:record, nil, data: { toggle: "tooltip", placement: "right"}, title: "considered to be new key-value pairs")
10
+ = f.text_area(:record, class: "form-control")
11
+
12
+ .card.card-body.bg-light
13
+ %h4{"data-toggle" => "collapse", "href" => "#advanced-setting"}
14
+ = icon('fa-caret-down')
15
+ = t('terms.advanced_setting')
16
+ #advanced-setting.collapse
17
+ - setting.advanced_options.each do |key|
18
+ = f.field(key)
19
+
20
+ = f.submit t('fluentd.common.finish'), class: "btn btn-lg btn-primary pull-right"
@@ -19,6 +19,7 @@
19
19
  = f.hidden_field(key)
20
20
  = f.field(key, disabled: true)
21
21
 
22
+ = form.field(:label)
22
23
  = form.field(:tag)
23
24
  = form.field(:pos_file)
24
25
 
@@ -2,20 +2,28 @@
2
2
  - page_title t('.page_title')
3
3
 
4
4
  .row.fluentd-setting-inout
5
- .col-xl-4
5
+ .col-xl-3
6
6
  .card.card-primary
7
7
  .card-header
8
8
  %h4= t('.in')
9
9
  .card-body
10
- - %w|tail syslog monitor_agent http forward|.each do |type|
10
+ - %w(tail syslog monitor_agent http forward).each do |type|
11
11
  %p
12
12
  = link_to(send("daemon_setting_in_#{type}_path", @fluentd)) do
13
13
  = icon('fa-file-text-o fa-lg')
14
14
  = t("fluentd.common.setup_in_#{type}")
15
15
  .col-xl-1.arrow-right
16
16
  = icon "fa-arrow-circle-right"
17
- .col-xl-2
18
- = image_tag "/fluentd-logo.png", style: "max-width: 100%"
17
+ .col-xl-3
18
+ .card.card-primary
19
+ .card-header
20
+ %h4= t('.filter')
21
+ .card-body
22
+ - %w(grep parser record_transformer stdout).each do |type|
23
+ %p
24
+ = link_to(send("daemon_setting_filter_#{type}_path", @fluentd)) do
25
+ = icon('fa-file-text-o -fa-lg')
26
+ = t("fluentd.common.setup_filter_#{type}")
19
27
  .col-xl-1.arrow-right
20
28
  = icon "fa-arrow-circle-right"
21
29
  .col-xl-4
@@ -23,7 +31,7 @@
23
31
  .card-header
24
32
  %h4= t('.out')
25
33
  .card-body
26
- - %w|stdout tdlog s3 mongo elasticsearch forward|.each do |type|
34
+ - %w(stdout tdlog s3 mongo elasticsearch forward).each do |type|
27
35
  %p
28
36
  = link_to(send("daemon_setting_out_#{type}_path", @fluentd)) do
29
37
  = icon('fa-file-text-o fa-lg')
@@ -38,25 +46,49 @@
38
46
  %button.btn.btn-outline-dark.btn-sm{"v-on:click" => "update", "v-if" => "!loading"}= icon('fa-refresh')
39
47
  %button.btn.btn-outline-dark.btn-sm{"v-if" => "loading"}= icon('fa-spin fa-refresh')
40
48
  .row
41
- .col-xl-6.input
49
+ .col-xl-4.input
42
50
  %h3= t('.in')
43
- %div{"v-if" => "loaded && sections.sources.length == 0"}
51
+ .col-xl-4.filter
52
+ %h3= t('.filter')
53
+ .col-xl-4.output
54
+ %h3= t('.out')
55
+
56
+ .row{"v-for" => "(elements, label) in sections"}
57
+ .col-xl-4.input
58
+ %h5 {{ label }}
59
+ %div{"v-if" => "loaded && !elements.sources || elements.sources.length == 0"}
44
60
  %p.empty= t('.setting_empty')
45
- %setting-section{"v-if" => "loaded && sections.sources.length > 0",
46
- "v-for" => "source in sections.sources",
61
+ %setting-section{"v-if" => "loaded && elements.sources && elements.sources.length > 0",
62
+ "v-for" => "source in elements.sources",
47
63
  "v-bind:key" => "source.id",
64
+ "v-bind:initial-label" => "source.current_label",
48
65
  "v-bind:initial-id" => "source.id",
49
66
  "v-bind:initial-content" => "source.content",
50
67
  "v-bind:initial-type" => "source.type",
51
68
  "v-bind:initial-name" => "source.name",
52
69
  "v-bind:initial-arg" => "source.arg"}
53
- .col-xl-6.output
54
- %h3= t('.out')
55
- %div{"v-if" => "loaded && sections.matches.length == 0"}
70
+ .col-xl-4.filter
71
+ %h5 {{ label }}
72
+ %div{"v-if" => "loaded && !elements.filters || elements.filters.length == 0"}
73
+ %p.empty= t('.setting_empty')
74
+ %setting-section{"v-if" => "loaded && elements.filters.length > 0",
75
+ "v-for" => "filter in elements.filters",
76
+ "v-bind:key" => "filter.id",
77
+ "v-bind:initial-label" => "filter.current_label",
78
+ "v-bind:initial-id" => "filter.id",
79
+ "v-bind:initial-content" => "filter.content",
80
+ "v-bind:initial-type" => "filter.type",
81
+ "v-bind:initial-name" => "filter.name",
82
+ "v-bind:initial-arg" => "filter.arg"}
83
+
84
+ .col-xl-4.output
85
+ %h5 {{ label }}
86
+ %div{"v-if" => "loaded && !elements.matches || elements.matches.length == 0"}
56
87
  %p.empty= t('.setting_empty')
57
- %setting-section{"v-if" => "loaded && sections.matches.length > 0",
58
- "v-for" => "match in sections.matches",
88
+ %setting-section{"v-if" => "loaded && elements.matches.length > 0",
89
+ "v-for" => "match in elements.matches",
59
90
  "v-bind:key" => "match.id",
91
+ "v-bind:initial-label" => "match.current_label",
60
92
  "v-bind:initial-id" => "match.id",
61
93
  "v-bind:initial-content" => "match.content",
62
94
  "v-bind:initial-type" => "match.type",
@@ -0,0 +1,19 @@
1
+ - add_javascript_pack_tag("filter_grep_setting")
2
+
3
+ = render "shared/vue/grep_container"
4
+
5
+ #filter-grep-setting
6
+ %div
7
+ %template{"v-for" => "(enabled, i) in containers.and"}
8
+ %grep-container{"v-if" => "enabled",
9
+ "v-bind:container-type" => '"and"',
10
+ "v-bind:index" => "i",
11
+ "v-on:add-grep-container" => "addGrepContainer",
12
+ "v-on:remove-grep-container" => "removeGrepContainer"}
13
+ %div
14
+ %template{"v-for" => "(enabled, i) in containers.or"}
15
+ %grep-container{"v-if" => "enabled",
16
+ "v-bind:container-type" => '"or"',
17
+ "v-bind:index" => "i",
18
+ "v-on:add-grep-container" => "addGrepContainer",
19
+ "v-on:remove-grep-container" => "removeGrepContainer"}
@@ -0,0 +1,32 @@
1
+ = render "shared/vue/grep_pattern"
2
+ %script{type: "text/x-template", id: "vue-grep-container"}
3
+ .form-group.card
4
+ .card-header
5
+ %a.btn.btn-xs{"v-on:click" => "add", "v-if" => "index == 0"}
6
+ = icon("fa-plus")
7
+ %a.btn.btn-xs{"v-on:click" => "remove", "v-if" => "index != 0"}
8
+ = icon("fa-minus")
9
+ %label
10
+ {{ containerType | humanize }}
11
+ %label.pl-4.pr-2
12
+ %input{"type" => "radio",
13
+ "value" => "regexp",
14
+ "v-bind:name" => "inputName(index)",
15
+ "v-model" => "grepType"}
16
+ Regexp
17
+ %label
18
+ %input{"type" => "radio",
19
+ "value" => "exclude",
20
+ "v-bind:name" => "inputName(index)",
21
+ "v-model" => "grepType"}
22
+ Exclude
23
+ .card-body
24
+ .row
25
+ %template{"v-for" => "(enabled, i) in patterns"}
26
+ %grep-pattern.col-xl-3{"v-if" => "enabled",
27
+ "v-bind:container-type" => "containerType",
28
+ "v-bind:grep-type" => "grepType",
29
+ "v-bind:index" => "index",
30
+ "v-bind:subIndex" => "i",
31
+ "v-on:add-grep-pattern" => "addGrepPattern",
32
+ "v-on:remove-grep-pattern" => "removeGrepPattern"}
@@ -0,0 +1,24 @@
1
+ %script{type: "text/x-template", id: "vue-grep-pattern"}
2
+ %div
3
+ %a.btn.btn-xs{"v-on:click" => "add", "v-if" => "subIndex == 0"}
4
+ = icon("fa-plus")
5
+ %a.btn.btn-xs{"v-on:click" => "remove", "v-if" => "subIndex != 0"}
6
+ = icon("fa-minus")
7
+ %label
8
+ {{ grepType | humanize }}
9
+ .form-group
10
+ %label{"data" => {"toggle" => "tooltip", "placement" => "right"},
11
+ "title" => "The field name to which the regular expression is applied."}
12
+ Key
13
+ %input.form-control{"v-bind:id" => 'inputId("key", index, subIndex)',
14
+ "v-bind:name" => 'inputName("key", index, subIndex)',
15
+ "v-model:lazy" => "key",
16
+ "type" => "text"}
17
+ .form-group
18
+ %label{"data" => {"toggle" => "tooltip", "placement" => "right"},
19
+ "title" => "The regular expression"}
20
+ Pattern
21
+ %input.form-control{"v-bind:id" => 'inputId("pattern", index, subIndex)',
22
+ "v-bind:name" => 'inputName("pattern", index, subIndex)',
23
+ "v-model:lazy" => "pattern",
24
+ "type" => "text"}
@@ -6,12 +6,12 @@
6
6
  <div class="card-header" data-toggle="collapse" v-bind:href="'#'+id" v-bind:title="content">
7
7
  <i class="fa fa-caret-down"></i>
8
8
  {{ type }}
9
- <span v-if="name == 'match'">({{ arg }})</span>
9
+ <span v-if="!_.isEmpty(arg) && (name == 'match' || name == 'filter')">({{ arg }})</span>
10
10
  </div>
11
11
  <div class="card-body collapse" v-bind:id="id">
12
12
  <pre v-if="mode != 'edit'">{{ content }}</pre>
13
13
  <p v-if="mode == 'edit'">
14
- <textarea v-config-editor class="form-control" v-model="content" v-bind:disabled="processing"></textarea>
14
+ <textarea v-config-editor class="form-control" v-model.lazy="content" v-bind:disabled="processing"></textarea>
15
15
  </p>
16
16
  <p class="float-right">
17
17
  <button v-if="mode != 'edit'" class="btn btn-secondary" v-on:click="onEdit"><%= t('terms.edit') %></button>
@@ -113,6 +113,10 @@ en:
113
113
  setup_in_monitor_agent: Monitoring Agent
114
114
  setup_in_http: http
115
115
  setup_in_forward: Forwarding (receiving from another fluentd)
116
+ setup_filter_grep: Filtering (grep)
117
+ setup_filter_parser: Parse field
118
+ setup_filter_record_transformer: Transform
119
+ setup_filter_stdout: stdout(log)
116
120
  setup_out_td: Treasure Data
117
121
  setup_out_mongo: MongoDB
118
122
  setup_out_stdout: stdout (log)
@@ -145,6 +149,7 @@ en:
145
149
  page_title: Add Source and Output
146
150
  in: Source
147
151
  out: Output
152
+ filter: Filter
148
153
  current: Current setting
149
154
  setting_empty: Not exists
150
155
  show:
@@ -155,19 +160,19 @@ en:
155
160
  page_title: Edit Config File
156
161
  out_forward:
157
162
  option_guide: |
158
- For each config parameter, please refer to the <a href="http://docs.fluentd.org/articles/out_forward" target="_blank">Forward output plugin</a> documentation page.
163
+ For each config parameter, please refer to the <a href="https://docs.fluentd.org/articles/out_forward" target="_blank">Forward output plugin</a> documentation page.
159
164
  secondary_note: |
160
165
  All servers are unavailable, store data as a file to specified path.
161
166
  show:
162
167
  page_title: Add Output to another Fluentd
163
168
  out_s3:
164
169
  option_guide: |
165
- For each config parameter, please refer to the <a href="http://docs.fluentd.org/articles/out_s3" target="_blank">Amazon S3 output plugin</a> documentation page.
170
+ For each config parameter, please refer to the <a href="https://docs.fluentd.org/articles/out_s3" target="_blank">Amazon S3 output plugin</a> documentation page.
166
171
  show:
167
172
  page_title: Add Output to Amazon S3
168
173
  out_td:
169
174
  option_guide: |
170
- For each config parameter, please refer to the <a href="http://docs.fluentd.org/articles/out_td" target="_blank">Treasure Data output plugin</a> documentation page.
175
+ For each config parameter, please refer to the <a href="https://docs.fluentd.org/articles/out_td" target="_blank">Treasure Data output plugin</a> documentation page.
171
176
  show:
172
177
  page_title: Add Output to Treasure Data
173
178
  out_elasticsearch:
@@ -177,40 +182,64 @@ en:
177
182
  page_title: Add Output to Elasticsearch
178
183
  out_mongo:
179
184
  option_guide: |
180
- For each config parameter, please refer to the <a href="http://docs.fluentd.org/articles/out_mongo" target="_blank">MongoDB output plugin</a> documentation page.
185
+ For each config parameter, please refer to the <a href="https://docs.fluentd.org/articles/out_mongo" target="_blank">MongoDB output plugin</a> documentation page.
181
186
  show:
182
187
  page_title: Add Output to MongoDB
183
188
  out_stdout:
184
189
  option_guide: |
185
- Print events to STDOUT (or fluentd log file if launched with daemon mode). Please refer to the <a href="http://docs.fluentd.org/articles/out_stdout" target="_blank">stdout output plugin</a> documentation page.
190
+ Print events to STDOUT (or fluentd log file if launched with daemon mode). Please refer to the <a href="https://docs.fluentd.org/articles/out_stdout" target="_blank">stdout output plugin</a> documentation page.
191
+ show:
192
+ page_title: stdout (log)
193
+ filter_grep:
194
+ option_guide: |
195
+ "Grep" events by the value of specified fields.<br />
196
+ Please refer to the <a target="_blank" href="https://docs.fluentd.org/articles/filter_grep">filter_grep plugin</a> documentation page.
197
+ show:
198
+ page_title: Add filter to grep records
199
+ filter_parser:
200
+ option_guide: |
201
+ Parse string field in event records and mutates its event record with parsed result.<br />
202
+ Please refer to the <a target="_blank" href="https://docs.fluentd.org/articles/filter_parser">filter_parser plugin</a> documentation page.
203
+ show:
204
+ page_title: Add filter to parse records
205
+ filter_record_transformer:
206
+ option_guide: |
207
+ Mutage/Transform incoming event streams in a versatile manner.<br />
208
+ Please refer to the <a target="_blank" href="https://docs.fluentd.org/articles/filter_record_transformer">filter_record_transformer plugin</a> documentation page.
209
+ show:
210
+ page_title: Add filter to transform records
211
+ filter_stdout:
212
+ option_guide: |
213
+ Print events to STDOUT (or logs if launched with daemon mode).<br />
214
+ Please refer to the <a target="_blank" href="https://docs.fluentd.org/articles/filter_stdout>filter_stdout plugin</a> documentation page.
186
215
  show:
187
216
  page_title: stdout (log)
188
217
  in_syslog:
189
218
  option_guide: |
190
- For each config parameter, please refer to the <a href="http://docs.fluentd.org/articles/in_syslog" target="_blank">MongoDB output plugin</a> documentation page.
219
+ For each config parameter, please refer to the <a href="https://docs.fluentd.org/articles/in_syslog" target="_blank">MongoDB output plugin</a> documentation page.
191
220
  show:
192
221
  page_title: Add Input from Syslog Protocol
193
222
  in_monitor_agent:
194
223
  option_guide: |
195
224
  Monitoring agent returns current fluentd/td-agent setting as JSON via HTTP. <br />
196
- Please see refer to the <a target="_blank" href="http://docs.fluentd.org/articles/monitoring">Monitoring Agent</a> documentation page.
225
+ Please see refer to the <a target="_blank" href="https://docs.fluentd.org/articles/monitoring">Monitoring Agent</a> documentation page.
197
226
  show:
198
227
  page_title: Monitoring Agent (monitor_agent)
199
228
  in_http:
200
229
  option_guide: |
201
230
  Retrieve records from http POST.<br />
202
231
  The URL path becomes the tag of the Fluentd event log and the POSTed body element becomes the record itself.<br />
203
- Please see refer to the <a target="_blank" href="http://docs.fluentd.org/articles/in_http">http Input Plugin</a> documentation page.
232
+ Please see refer to the <a target="_blank" href="https://docs.fluentd.org/articles/in_http">http Input Plugin</a> documentation page.
204
233
  show:
205
234
  page_title: Add http Input Plugin
206
235
  in_forward:
207
236
  option_guide: |
208
237
  Listen to a TCP socket to receive the event stream and an UDP socket to receive heartbeat messages.
209
- Please see refer to the <a target="_blank" href="http://docs.fluentd.org/articles/in_forward">forward Input Plugin</a> documentation page.
238
+ Please see refer to the <a target="_blank" href="https://docs.fluentd.org/articles/in_forward">forward Input Plugin</a> documentation page.
210
239
  show:
211
240
  page_title: Add forward Input Plugin
212
241
  in_tail_option_guide: |
213
- For each config parameter, please refer to the <a href="http://docs.fluentd.org/articles/in_tail" target="_blank">Tail input plugin</a> documentation page.
242
+ For each config parameter, please refer to the <a href="https://docs.fluentd.org/articles/in_tail" target="_blank">Tail input plugin</a> documentation page.
214
243
  in_tail:
215
244
  notice_for_permission: "Please check permission or group setting for %{user} user can read it."
216
245
  notice_for_multiline_limit: "Please input Regexp(s) separated by newline. blank lines are ignored. Lines more than 20 are dropped."