]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/elasticsearch/recipes/default.rb
Prevent use of buggy parser gem
[chef.git] / cookbooks / elasticsearch / recipes / default.rb
index 05c6c27d5c24618f26029d9e064ad4bb87b9ed2b..a48ee99879c4dd049afa5eab2eebcdb3e57ce265 100644 (file)
 # 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