Merge pull request #252 from dcleric/Add-jmx-remote-for-monitoring

Ability to add custom jvm options
This commit is contained in:
Dale McDiarmid 2017-03-10 10:47:47 -08:00 committed by GitHub
commit 4d688c1c63
2 changed files with 7 additions and 0 deletions

View file

@ -36,3 +36,5 @@ pid_dir: ''
log_dir: ''
conf_dir: ''
data_dirs: ''
# JVM custom parameters
es_jvm_custom_parameters: ''

View file

@ -106,3 +106,8 @@
# WARNING: This option will be removed in Elasticsearch 6.0.0 and is provided
# only for migration purposes.
#-Delasticsearch.json.allow_unquoted_field_names=true
{% if es_jvm_custom_parameters !='' %}
{% for item in es_jvm_custom_parameters %}
{{ item }}
{% endfor %}
{% endif %}