itamae/cookbooks/prometheus/default.rb

15 lines
352 B
Ruby
Raw Normal View History

2019-03-03 08:50:49 +00:00
# Loading the attributes:
include_recipe './attributes.rb'
# Install the Prometheus manager:
if node['prometheus']['manager']
include_recipe './install.rb'
include_recipe './setup.rb'
end
# Install the node_exporter here:
include_recipe './node_exporter_install.rb'
include_recipe './node_exporter_setup.rb'
include_recipe './exporter_proxy.rb'