itamae/cookbooks/prometheus/default.rb

37 lines
866 B
Ruby
Raw Normal View History

2019-03-03 08:50:49 +00:00
# Loading the attributes:
include_recipe './attributes.rb'
include_recipe './prometheus_install.rb'
include_recipe './prometheus_setup.rb'
2020-07-18 05:54:13 +00:00
include_recipe './alertmanager_install.rb'
include_recipe './alertmanager_setup.rb'
2020-09-12 06:04:44 +00:00
include_recipe './alertmanager_webhook_install.rb'
include_recipe './alertmanager_webhook_setup.rb'
# Deploy /etc/hosts file:
HOSTNAME = run_command('uname -n').stdout.chomp
template '/etc/promtail/prometheus.yaml' do
owner 'root'
group 'root'
mode '644'
variables(HOSTNAME: HOSTNAME, LOKIENDPOINT: node['promtail']['lokiendpoint'])
notifies :restart, 'service[promtail-prometheus]'
2019-03-03 08:50:49 +00:00
end
# Deploy the `systemd` configuration:
remote_file '/lib/systemd/system/promtail-prometheus.service' do
owner 'root'
group 'root'
mode '644'
2020-09-27 05:21:58 +00:00
end
# Service setting:
service 'promtail-prometheus' do
action [ :enable, :restart ]
end