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