You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
809 B
Go
29 lines
809 B
Go
3 years ago
|
package internal
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/zeromicro/go-zero/core/logx"
|
||
|
"github.com/zeromicro/go-zero/core/timex"
|
||
|
"go.opentelemetry.io/otel/propagation"
|
||
|
)
|
||
|
|
||
|
func LogInterceptor(r *http.Request) (*http.Request, ResponseHandler) {
|
||
|
start := timex.Now()
|
||
|
return r, func(resp *http.Response) {
|
||
|
duration := timex.Since(start)
|
||
|
var tc propagation.TraceContext
|
||
|
ctx := tc.Extract(r.Context(), propagation.HeaderCarrier(resp.Header))
|
||
|
logger := logx.WithContext(ctx).WithDuration(duration)
|
||
|
if isOkResponse(resp.StatusCode) {
|
||
|
logger.Infof("[HTTP] %d - %s %s/%s", resp.StatusCode, r.Method, r.Host, r.RequestURI)
|
||
|
} else {
|
||
|
logger.Errorf("[HTTP] %d - %s %s/%s", resp.StatusCode, r.Method, r.Host, r.RequestURI)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func isOkResponse(code int) bool {
|
||
|
return code < http.StatusBadRequest
|
||
|
}
|