class Intrigue::Ident::Check::Akamai

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/akamai.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Akamai",
      :product => "CDN",
      :version => nil,
      :match_type => :content_body,
      :match_content =>  /The requested URL "&#91;no&#32;URL&#93;", is invalid.<p>/,
      :match_details =>"Akamai Missing Uri",
      :hide => true,
      :paths => ["#{url}"]
    }
  ]
end