# File httpd/lib/symbiosis/domain/http.rb, line 10
    def should_have_stats?
      bool = get_param("no-stats", self.config_dir)

      #
      # We invert the flag, since it is called "no-stats".
      #
      return true if false == bool or bool.nil?

      #
      # Return false if the flag exists at all.
      #
      return false
    end