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.
35 lines
943 B
Go
35 lines
943 B
Go
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, err error) {
|
|
duration := timex.Since(start)
|
|
if err != nil {
|
|
logger := logx.WithContext(r.Context()).WithDuration(duration)
|
|
logger.Errorf("[HTTP] %s %s - %v", r.Method, r.URL, err)
|
|
return
|
|
}
|
|
|
|
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", resp.StatusCode, r.Method, r.URL)
|
|
} else {
|
|
logger.Errorf("[HTTP] %d - %s %s", resp.StatusCode, r.Method, r.URL)
|
|
}
|
|
}
|
|
}
|
|
|
|
func isOkResponse(code int) bool {
|
|
return code < http.StatusBadRequest
|
|
}
|