Giter Site home page Giter Site logo

Comments (3)

peterhellberg avatar peterhellberg commented on July 17, 2024

Example log line from the Heroku router.

2014-06-25T12:16:59.479578+00:00 heroku[router]: at=info method=GET path="/" host=stat-api-stage.herokuapp.com request_id=854f6200-bf13-4781-bf6b-ac2c16332f7a fwd="193.14.163.194" dyno=web.1 connect=1ms service=2ms status=200 bytes=159

from goji.

zenazn avatar zenazn commented on July 17, 2024

Presumably they're actually passing an X-Request-Id header? If so, you can just Abandon Goji's default request ID generator and Insert a middleware in its place that slurps it out of a header.

from goji.

peterhellberg avatar peterhellberg commented on July 17, 2024

Yes, as it turned out, you can do something like this:

// XRequestID replaces the Goji RequestID middleware
// by using the X-Request-ID header set by Heroku (and others)
func XRequestID(c *web.C, h http.Handler) http.Handler {
    fn := func(w http.ResponseWriter, r *http.Request) {
        if c.Env == nil {
            c.Env = make(map[string]interface{})
        }

        c.Env["reqID"] = r.Header.Get("X-Request-ID")

        h.ServeHTTP(w, r)
    }

    return http.HandlerFunc(fn)
}

and then just:

goji.Abandon(middleware.RequestID)
goji.Insert(XRequestID, middleware.Logger)

from goji.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.