class Intrigue::Ident::Check::Nagios

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/nagios.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Nagios",
      :product =>"Nagios",
      :match_details =>"Nagios",
      :version => nil,
      :match_type => :content_headers,
      :match_content =>  /nagios/i,
      :paths => ["#{url}"]
    }
  ]
end