-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathinput.yml.erb
217 lines (200 loc) · 7.07 KB
/
input.yml.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<%- if @pure_array -%>
<%= scope['filebeat::inputs'].to_yaml() %>
<%- else -%>
---
- type: <%= @input_type %>
<%- if @input_type =~ /(tcp|udp)/ -%>
host: <%= @host %>
<%- if @max_message_size -%>
max_message_size: <%= @max_message_size %>
<%- end -%>
<%- elsif @input_type == 'docker' -%>
containers:
ids:
<%- @containers_ids.each do |id| -%>
- <%= id %>
<%- end -%>
path: <%= @containers_path %>
stream: <%= @containers_stream %>
combine_partial: <%= @combine_partial %>
cri.parse_flags: <%= @cri_parse_flags %>
<%- elsif @input_type == 'syslog' -%>
protocol.<%= @syslog_protocol %>:
host: <%= @syslog_host %>
<%- else -%>
paths:
<%- @paths.each do |log_path| -%>
- <%= log_path %>
<%- end -%>
<%- if @encoding -%>
encoding: <%= @encoding %>
<%- end -%>
<%- if @include_lines.length > 0 -%>
include_lines:
<%- @include_lines.each do |include_line| -%>
- '<%= include_line %>'
<%- end -%>
<%- end -%>
<%- if @exclude_lines.length > 0 -%>
exclude_lines:
<%- @exclude_lines.each do |exclude_line| -%>
- '<%= exclude_line %>'
<%- end -%>
<%- end -%>
<%- if @exclude_files.length > 0 -%>
exclude_files:
<%- @exclude_files.each do |exclude_file| -%>
- <%= exclude_file %>
<%- end -%>
<%- end -%>
<%- if @ignore_older -%>
ignore_older: <%= @ignore_older %>
<%- end -%>
<%- if @doc_type -%>
document_type: <%= @doc_type %>
<%- end -%>
<%- if @scan_frequency -%>
scan_frequency: <%= @scan_frequency %>
<%- end -%>
<%- if @harvester_buffer_size -%>
harvester_buffer_size: <%= @harvester_buffer_size %>
<%- end -%>
<%- if @max_bytes -%>
max_bytes: <%= @max_bytes %>
<%- end -%>
<%- if @symlinks -%>
symlinks: <%= @symlinks %>
<%- end -%>
<%- if @close_older -%>
close_older: <%= @close_older %>
<%- end -%>
<%- if @force_close_files -%>
force_close_files: <%= @force_close_files %>
<%- end -%>
<%- if @json.length > 0 -%>
### JSON configuration
json:
# Decode JSON options. Enable this if your logs are structured in JSON.
# JSON key on which to apply the line filtering and multiline settings. This key
# must be top level and its value must be string, otherwise it is ignored. If
# no text key is defined, the line filtering and multiline features cannot be used.
<%- if @json['message_key'] != nil-%>
message_key: '<%= @json['message_key'] %>'
<%- end -%>
# By default, the decoded JSON is placed under a "json" key in the output document.
# If you enable this setting, the keys are copied top level in the output document.
<%- if @json['keys_under_root'] != nil -%>
keys_under_root: <%= @json['keys_under_root'] %>
<%- end -%>
# If keys_under_root and this setting are enabled, then the values from the decoded
# JSON object overwrite the fields that Filebeat normally adds (type, source, offset, etc.)
# in case of conflicts.
<%- if @json['overwrite_keys'] != nil -%>
overwrite_keys: <%= @json['overwrite_keys'] %>
<%- end -%>
# If this setting is enabled, Filebeat adds a "json_error" key in case of JSON
# unmarshaling errors or when a text key is defined in the configuration but cannot
# be used.
<%- if @json['add_error_key'] != nil -%>
add_error_key: <%= @json['add_error_key'] %>
<%- end -%>
<%- end -%>
<%- if @multiline.length > 0 -%>
multiline:
<%- if @multiline['pattern'] -%>
pattern: '<%= @multiline['pattern'] %>'
<%- end -%>
<%- if @multiline['negate'] -%>
negate: <%= @multiline['negate'] %>
<%- end -%>
<%- if @multiline['match'] -%>
match: <%= @multiline['match'] %>
<%- end -%>
<%- if @multiline['max_lines'] -%>
max_lines: <%= @multiline['max_lines'] %>
<%- end -%>
<%- if @multiline['timeout'] -%>
timeout: <%= @multiline['timeout'] %>
<%- end -%>
<%- end -%>
tail_files: <%= @tail_files %>
# Experimental: If symlinks is enabled, symlinks are opened and harvested. The harvester is openening the
# original for harvesting but will report the symlink name as source.
#symlinks: false
<%- if @backoff -%>
backoff: <%= @backoff %>
<%- end -%>
<%- if @max_backoff -%>
max_backoff: <%= @max_backoff %>
<%- end -%>
<%- if @backoff_factor -%>
backoff_factor: <%= @backoff_factor %>
<%- end -%>
# Experimental: Max number of harvesters that are started in parallel.
# Default is 0 which means unlimited
<%- if @harvester_limit -%>
harvester_limit: <%= @harvester_limit %>
<%- end -%>
### Harvester closing options
# Close inactive closes the file handler after the predefined period.
# The period starts when the last line of the file was, not the file ModTime.
# Time strings like 2h (2 hours), 5m (5 minutes) can be used.
<%- if @close_inactive -%>
close_inactive: <%= @close_inactive %>
<%- end -%>
# Close renamed closes a file handler when the file is renamed or rotated.
# Note: Potential data loss. Make sure to read and understand the docs for this option.
close_renamed: <%= @close_renamed %>
# When enabling this option, a file handler is closed immediately in case a file can't be found
# any more. In case the file shows up again later, harvesting will continue at the last known position
# after scan_frequency.
close_removed: <%= @close_removed %>
# Closes the file handler as soon as the harvesters reaches the end of the file.
# By default this option is disabled.
# Note: Potential data loss. Make sure to read and understand the docs for this option.
close_eof: <%= @close_eof %>
### State options
# Files for the modification data is older then clean_inactive the state from the registry is removed
# By default this is disabled.
<%- if @clean_inactive -%>
clean_inactive: <%= @clean_inactive %>
<%- end -%>
# Removes the state for file which cannot be found on disk anymore immediately
clean_removed: <%= @clean_removed %>
# Close timeout closes the harvester after the predefined time.
# This is independent if the harvester did finish reading the file or not.
# By default this option is disabled.
# Note: Potential data loss. Make sure to read and understand the docs for this option.
<%- if @close_timeout -%>
close_timeout: <%= @close_timeout %>
<%- end -%>
<%- end -%>
<%- # Everything below this can be applied to any input. -%>
<%- # https://www.elastic.co/guide/en/beats/filebeat/current/configuration-general-options.html#configuration-general -%>
<%- if @pipeline -%>
pipeline: <%= @pipeline %>
<%- end -%>
<%- if @fields.length > 0 -%>
fields:
<%- @fields.each_pair do |k, v| -%>
<%= k %>: <%= v %>
<%- end -%>
<%- end -%>
fields_under_root: <%= @fields_under_root %>
<%- if @ssl.length > 0 -%>
ssl:
<%- @ssl.each_pair do |k, v| -%>
<%= k %>: <%= v %>
<%- end -%>
<%- end -%>
<%- if @tags.length > 0 -%>
tags:
<%- @tags.each do |tag| -%>
- <%= tag %>
<%- end -%>
<%- end -%>
<%- if @processors.length > 0 -%>
processors:
<%- %><%= @processors.to_yaml.lines.drop(1).join.gsub(/^/, ' ') -%>
<%- end -%>
<%- end %>