File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change 19
19
# Default beat input #
20
20
# Autoconfigured Redis outputs: input
21
21
22
- - pipeline
22
+ - pipeline:
23
23
id: ansible-input
24
- unsafe_shutdown: {{ ansible_input_unsafe_shutdown | default({{ logstash_pipeline_unsafe_shutdown }} ) }}
25
- path
24
+ unsafe_shutdown: {{ ansible_input_unsafe_shutdown | default( logstash_pipeline_unsafe_shutdown ) }}
25
+ path:
26
26
config: "/etc/logstash/conf.d/ansible-input/*.conf"
27
- queue
27
+ queue:
28
28
type: {{ logstash_input_queue_type }}
29
29
max_bytes: {{ logstash_input_queue_max_bytes }}
30
30
34
34
# Default elasticsearch output #
35
35
# Autoconfigured Redis input: forwarder
36
36
37
- - pipeline
37
+ - pipeline:
38
38
id: ansible-forwarder
39
- unsafe_shutdown: {{ ansible_forwarder_unsafe_shutdown | default({{ logstash_pipeline_unsafe_shutdown }} ) }}
40
- path
39
+ unsafe_shutdown: {{ ansible_forwarder_unsafe_shutdown | default( logstash_pipeline_unsafe_shutdown ) }}
40
+ path:
41
41
config: "/etc/logstash/conf.d/ansible-forwarder/*.conf"
42
- queue
42
+ queue:
43
43
type: {{ logstash_forwarder_queue_type }}
44
44
max_bytes: {{ logstash_forwarder_queue_max_bytes }}
45
45
72
72
73
73
{% endif %}
74
74
75
- - pipeline
75
+ - pipeline:
76
76
id: {{ item.name }}
77
- unsafe_shutdown: {{ item.unsafe_shutdown | default({{ logstash_pipeline_unsafe_shutdown }} ) }}
78
- path
77
+ unsafe_shutdown: {{ item.unsafe_shutdown | default( logstash_pipeline_unsafe_shutdown ) }}
78
+ path:
79
79
config: "/etc/logstash/conf.d/{{ item.name }}/*.conf"
80
- queue
80
+ queue:
81
81
type: {{ item.queue_type | default('memory') }}
82
82
max_bytes: {{ item.queue_max_bytes | default('1gb') }}
83
83
You can’t perform that action at this time.
0 commit comments