X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b73176eda2a83b7fc0170a5639ad036b1c897773..HEAD:/cookbooks/elasticsearch/recipes/default.rb diff --git a/cookbooks/elasticsearch/recipes/default.rb b/cookbooks/elasticsearch/recipes/default.rb index 05c6c27d5..a48ee9987 100644 --- a/cookbooks/elasticsearch/recipes/default.rb +++ b/cookbooks/elasticsearch/recipes/default.rb @@ -17,8 +17,11 @@ # limitations under the License. # +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 @@ -37,3 +40,7 @@ service "elasticsearch" do action [:enable, :start] supports :status => true, :restart => true end + +prometheus_exporter "elasticsearch" do + port 9114 +end