This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-07-23 15:37:06 +00:00
|
|
|
package ak
|
|
|
|
|
|
|
|
import (
|
2021-09-03 16:17:08 +00:00
|
|
|
"context"
|
2021-07-23 15:37:06 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/getsentry/sentry-go"
|
|
|
|
)
|
|
|
|
|
|
|
|
type tracingTransport struct {
|
|
|
|
inner http.RoundTripper
|
2021-09-03 16:17:08 +00:00
|
|
|
ctx context.Context
|
2021-07-23 15:37:06 +00:00
|
|
|
}
|
|
|
|
|
2021-09-03 16:17:08 +00:00
|
|
|
func NewTracingTransport(ctx context.Context, inner http.RoundTripper) *tracingTransport {
|
|
|
|
return &tracingTransport{inner, ctx}
|
2021-07-23 15:37:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (tt *tracingTransport) RoundTrip(r *http.Request) (*http.Response, error) {
|
2021-09-03 16:17:08 +00:00
|
|
|
span := sentry.StartSpan(tt.ctx, "authentik.go.http_request")
|
2021-07-23 15:37:06 +00:00
|
|
|
span.SetTag("url", r.URL.String())
|
|
|
|
span.SetTag("method", r.Method)
|
|
|
|
defer span.Finish()
|
|
|
|
return tt.inner.RoundTrip(r.WithContext(span.Context()))
|
|
|
|
}
|