This file is indexed.

/usr/share/gocode/src/github.com/emicklei/go-restful/examples/google_app_engine/restful-appstats-integration.go is in golang-github-emicklei-go-restful-dev 1.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
package main

import (
	"github.com/mjibson/appstats"
)


func stats(req *restful.Request, resp *restful.Response, chain *restful.FilterChain) {
	c := appstats.NewContext(req.Request)
	chain.ProcessFilter(req, resp)
	c.Stats.Status = resp.StatusCode()
	c.Save()
}