# File lib/fog/rackspace/requests/monitoring/create_check.rb, line 5
        def create_check(entity_id, options = {})
          data = options.dup
          request(
            :body     => JSON.encode(data),
            :expects  => [201],
            :method   => 'POST',
            :path     => "entities/#{entity_id}/checks"
          )
        end