File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ Aside from `logstash.yml` we can manage Logstashs pipelines.
60
60
* * logstash_ident_field_name* : Name of the identifying the instance (default: ` "[netways][instance]" ` )
61
61
* * logstash_beats_input* : Enable default pipeline with ` beats ` input (default: ` true ` )
62
62
* * logstash_beats_input_congestion* : Optional congestion threshold for the beats input pipeline
63
+ * * logstash_beats_timeout* : Optional timeout for client connections. (Example: ` 60s ` )
63
64
* * logstash_beats_tls* : Activate TLS for the beats input pipeline (default: none but ` true ` with full stack setup if not set)
64
65
* * logstash_tls_key_passphrase* : Passphrase for Logstash certificates (default: ` LogstashChangeMe ` )
65
66
* * elasticstack_ca_pass* : Password for Elasticsearch CA (default: ` PleaseChangeMe ` )
Original file line number Diff line number Diff line change 9
9
ssl_certificate_authorities => ["{{ logstash_certs_dir }}/ca.crt"]
10
10
ssl_peer_metadata => false
11
11
{% endif %}
12
+ {% if logstash_beats_timeout is defined %}
13
+ client_inactivity_timeout => "{{ logstash_beats_timeout }}"
14
+ {% endif %}
12
15
13
16
}
14
17
}
You can’t perform that action at this time.
0 commit comments