]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/elasticsearch/recipes/default.rb
Configure prometheus exporter for elasticsearch
[chef.git] / cookbooks / elasticsearch / recipes / default.rb
index ce4083f79593183fa27197ec2f226dee71ed1656..a48ee99879c4dd049afa5eab2eebcdb3e57ce265 100644 (file)
@@ -17,6 +17,8 @@
 # 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"
@@ -38,3 +40,7 @@ service "elasticsearch" do
   action [:enable, :start]
   supports :status => true, :restart => true
 end
+
+prometheus_exporter "elasticsearch" do
+  port 9114
+end