# File lib/thin/stats.rb, line 41
      def serve(env)
        body = @template.result(binding)
        
        [
          200,
          {
            'Content-Type' => 'text/html',
            'Content-Length' => body.size.to_s
          },
          [body]
        ]
      end