mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 09:33:34 -06:00
* Separate Tracer interface to TracerService and Tracer * Fix lint * Fix:Make it possible to start spans for both opentracing and opentelemetry in ds proxy * Add span methods, use span interface for rest of tracing * Fix logs in tracing * Fix tests that are related to tracing * Fix resourcepermissions test * Fix some tests * Fix more tests * Add TracingService to wire cli runner * Remove GlobalTracer from bus * Renaming test function * Remove GlobalTracer from TSDB * Replace GlobalTracer in api * Adjust tests to the InitializeForTests func * Remove GlobalTracer from services * Remove GlobalTracer * Remove bus.NewTest * Remove Tracer interface * Add InitializeForBus * Simplify tests * Clean up tests * Rename TracerService to Tracer * Update pkg/middleware/request_tracing.go Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com> * Initialize tracer before passing it to SQLStore initialization in commands * Remove tests for opentracing * Set span attributes correctly, remove unnecessary trace initiliazation form test * Add tracer instance to newSQLStore * Fix changes due to rebase * Add modified tracing middleware test * Fix opentracing implementation tags Co-authored-by: Marcus Efraimsson <marcus.efraimsson@gmail.com>
61 lines
2.0 KiB
Go
61 lines
2.0 KiB
Go
package httpclientprovider
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend/httpclient"
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
"github.com/grafana/grafana/pkg/infra/tracing"
|
|
"go.opentelemetry.io/otel/attribute"
|
|
"go.opentelemetry.io/otel/codes"
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
const (
|
|
TracingMiddlewareName = "tracing"
|
|
httpContentLengthTagKey = "http.content_length"
|
|
)
|
|
|
|
func TracingMiddleware(logger log.Logger, tracer tracing.Tracer) httpclient.Middleware {
|
|
return httpclient.NamedMiddlewareFunc(TracingMiddlewareName, func(opts httpclient.Options, next http.RoundTripper) http.RoundTripper {
|
|
return httpclient.RoundTripperFunc(func(req *http.Request) (*http.Response, error) {
|
|
ctx, span := tracer.Start(req.Context(), "HTTP Outgoing Request", trace.WithSpanKind(trace.SpanKindClient))
|
|
defer span.End()
|
|
|
|
req = req.WithContext(ctx)
|
|
for k, v := range opts.Labels {
|
|
span.SetAttributes(k, v, attribute.Key(k).String(v))
|
|
}
|
|
|
|
tracer.Inject(ctx, req.Header, span)
|
|
res, err := next.RoundTrip(req)
|
|
|
|
span.SetAttributes("http.url", req.URL.String(), attribute.String("http.url", req.URL.String()))
|
|
span.SetAttributes("http.method", req.Method, attribute.String("http.method", req.Method))
|
|
// ext.SpanKind.Set(span, ext.SpanKindRPCClientEnum)
|
|
|
|
if err != nil {
|
|
span.RecordError(err)
|
|
return res, err
|
|
}
|
|
|
|
if res != nil {
|
|
// we avoid measuring contentlength less than zero because it indicates
|
|
// that the content size is unknown. https://godoc.org/github.com/badu/http#Response
|
|
if res.ContentLength > 0 {
|
|
span.SetAttributes(httpContentLengthTagKey, res.ContentLength, attribute.Key(httpContentLengthTagKey).Int64(res.ContentLength))
|
|
}
|
|
|
|
span.SetAttributes("http.status_code", res.StatusCode, attribute.Int("http.status_code", res.StatusCode))
|
|
if res.StatusCode >= 400 {
|
|
span.SetStatus(codes.Error, fmt.Sprintf("error with HTTP status code %s", strconv.Itoa(res.StatusCode)))
|
|
}
|
|
}
|
|
|
|
return res, err
|
|
})
|
|
})
|
|
}
|