10 lines
190 B
Ruby
10 lines
190 B
Ruby
control 'Prometheus service' do
|
|
impact 0.5
|
|
title 'should be running and enabled'
|
|
|
|
describe service('prometheus') do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
end
|