module Fog module Monitoring class Rackspace class Real def create_check(entity_id, options = {}) data = options.dup request( :body => MultiJson.encode(data), :expects => [201], :method => 'POST', :path => "entities/#{entity_id}/checks" ) end end end end end