Merge pull request #252 from dcleric/Add-jmx-remote-for-monitoring
Ability to add custom jvm options
This commit is contained in:
commit
4d688c1c63
2 changed files with 7 additions and 0 deletions
|
|
@ -36,3 +36,5 @@ pid_dir: ''
|
||||||
log_dir: ''
|
log_dir: ''
|
||||||
conf_dir: ''
|
conf_dir: ''
|
||||||
data_dirs: ''
|
data_dirs: ''
|
||||||
|
# JVM custom parameters
|
||||||
|
es_jvm_custom_parameters: ''
|
||||||
|
|
|
||||||
|
|
@ -106,3 +106,8 @@
|
||||||
# WARNING: This option will be removed in Elasticsearch 6.0.0 and is provided
|
# WARNING: This option will be removed in Elasticsearch 6.0.0 and is provided
|
||||||
# only for migration purposes.
|
# only for migration purposes.
|
||||||
#-Delasticsearch.json.allow_unquoted_field_names=true
|
#-Delasticsearch.json.allow_unquoted_field_names=true
|
||||||
|
{% if es_jvm_custom_parameters !='' %}
|
||||||
|
{% for item in es_jvm_custom_parameters %}
|
||||||
|
{{ item }}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue