3 # Required by serverspec
6 describe package("prometheus") do
7 it { should be_installed }
10 describe service("prometheus") do
11 it { should be_enabled }
12 it { should be_running }
15 describe port(9090) do
16 it { should be_listening.with("tcp6") }