26 lines
623 B
Go
26 lines
623 B
Go
|
package web
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"time"
|
||
|
|
||
|
"github.com/getsentry/sentry-go"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func loggingMiddleware(next http.Handler) http.Handler {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
span := sentry.StartSpan(r.Context(), "request.logging")
|
||
|
before := time.Now()
|
||
|
// Call the next handler, which can be another middleware in the chain, or the final handler.
|
||
|
next.ServeHTTP(w, r)
|
||
|
after := time.Now()
|
||
|
log.WithFields(log.Fields{
|
||
|
"remote": r.RemoteAddr,
|
||
|
"method": r.Method,
|
||
|
"took": after.Sub(before),
|
||
|
}).Info(r.RequestURI)
|
||
|
span.Finish()
|
||
|
})
|
||
|
}
|