prometheus-formula/test/integration/repo/controls/service_spec.rb
2020-08-25 00:03:10 +02:00

24 lines
419 B
Ruby

# frozen_string_literal: true
control 'prometheus services' do
title 'should be running'
service =
case platform[:family]
when 'redhat'
'node_exporter'
else
'prometheus-node-exporter'
end
describe service(service) do
it { should be_enabled }
it { should be_running }
end
# prometheus-node-exporter port
describe port(9100) do
it { should be_listening }
end
end