X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/45dde9418dd342bb1a632d82559201c0b3becf1a..4329ac4e4366dea4e26542e52c3f6c68b8e3a6f1:/cookbooks/elasticsearch/recipes/default.rb?ds=inline diff --git a/cookbooks/elasticsearch/recipes/default.rb b/cookbooks/elasticsearch/recipes/default.rb index d2ba1d31b..a48ee9987 100644 --- a/cookbooks/elasticsearch/recipes/default.rb +++ b/cookbooks/elasticsearch/recipes/default.rb @@ -17,16 +17,22 @@ # limitations under the License. # -package %w[ - default-jre-headless - elasticsearch -] +include_recipe "prometheus" + +case node[:elasticsearch][:version] +when "6.x" then include_recipe "apt::elasticsearch6" +when "7.x" then include_recipe "apt::elasticsearch7" +when "8.x" then include_recipe "apt::elasticsearch8" +end + +package "default-jre-headless" +package "elasticsearch" template "/etc/elasticsearch/elasticsearch.yml" do source "elasticsearch.yml.erb" user "root" group "root" - mode 0o644 + mode "644" notifies :restart, "service[elasticsearch]" end @@ -34,3 +40,7 @@ service "elasticsearch" do action [:enable, :start] supports :status => true, :restart => true end + +prometheus_exporter "elasticsearch" do + port 9114 +end