32 lines
750 B
Go
32 lines
750 B
Go
|
package ak
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/getsentry/sentry-go"
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
type tracingTransport struct {
|
||
|
inner http.RoundTripper
|
||
|
ctx context.Context
|
||
|
}
|
||
|
|
||
|
func NewTracingTransport(ctx context.Context, inner http.RoundTripper) *tracingTransport {
|
||
|
return &tracingTransport{inner, ctx}
|
||
|
}
|
||
|
|
||
|
func (tt *tracingTransport) RoundTrip(r *http.Request) (*http.Response, error) {
|
||
|
span := sentry.StartSpan(tt.ctx, "authentik.go.http_request")
|
||
|
span.SetTag("url", r.URL.String())
|
||
|
span.SetTag("method", r.Method)
|
||
|
defer span.Finish()
|
||
|
res, err := tt.inner.RoundTrip(r.WithContext(span.Context()))
|
||
|
log.WithFields(log.Fields{
|
||
|
"url": r.URL.String(),
|
||
|
"method": r.Method,
|
||
|
}).Trace("http request")
|
||
|
return res, err
|
||
|
}
|