diff --git a/test/integration/default/controls/service_spec.rb b/test/integration/default/controls/service_spec.rb new file mode 100644 index 0000000..42bd360 --- /dev/null +++ b/test/integration/default/controls/service_spec.rb @@ -0,0 +1,15 @@ +# frozen_string_literal: true + +control 'prometheus services' do + title 'should be running' + + describe service('node_exporter') do + it { should be_enabled } + it { should be_running } + end + + # node_exporter port + describe port(9100) do + it { should be_listening } + end +end