class Intrigue::Ident::Check::Tableau

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/tableau.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Tableau",
      :product => "Tableau",
      :match_details => "Tableau Server",
      :version => nil,
      :references => ["https://community.tableau.com/thread/165653"],
      :match_type => :content_body,
      :match_content =>  /<meta name="vizportal-config" data-buildId=/i,
      :examples => ["http://137.154.26.56:80"],
      :paths => ["#{url}"]
    }
  ]
end