Documentation ¶
Index ¶
- func GetSpan(r *http.Request) opentracing.Span
- func InjectRequestHeaders(r *http.Request)
- func LogEventf(r *http.Request, format string, args ...interface{})
- func LogRequest(span opentracing.Span, r *http.Request)
- func LogResponseCode(span opentracing.Span, code int)
- func SetError(r *http.Request)
- func SetErrorAndDebugLog(r *http.Request, format string, args ...interface{})
- func SetErrorAndWarnLog(r *http.Request, format string, args ...interface{})
- func StartSpan(r *http.Request, operationName string, spanKinClient bool, ...) (opentracing.Span, *http.Request, func())
- type Backend
- type HTTPHandlerWrapper
- type NegroniHandlerWrapper
- type Tracing
- func (t *Tracing) Close()
- func (t *Tracing) Extract(format interface{}, carrier interface{}) (opentracing.SpanContext, error)
- func (t *Tracing) Inject(sm opentracing.SpanContext, format interface{}, carrier interface{}) error
- func (t *Tracing) IsEnabled() bool
- func (t *Tracing) NewEntryPoint(name string) negroni.Handler
- func (t *Tracing) NewForwarderMiddleware(frontend, backend string) negroni.Handler
- func (t *Tracing) NewHTTPHandlerWrapper(name string, handler http.Handler, clientSpanKind bool) http.Handler
- func (t *Tracing) NewNegroniHandlerWrapper(name string, handler negroni.Handler, clientSpanKind bool) negroni.Handler
- func (t *Tracing) Setup()
- func (t *Tracing) StartSpan(operationName string, opts ...opentracing.StartSpanOption) opentracing.Span
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func InjectRequestHeaders ¶
InjectRequestHeaders used to inject OpenTracing headers into the request
func LogRequest ¶
LogRequest used to create span tags from the request
func LogResponseCode ¶
func LogResponseCode(span opentracing.Span, code int)
LogResponseCode used to log response code in span
func SetErrorAndDebugLog ¶
SetErrorAndDebugLog flags the span associated with this request as in error and create a debug log
func SetErrorAndWarnLog ¶
SetErrorAndWarnLog flags the span associated with this request as in error and create a debug log
Types ¶
type HTTPHandlerWrapper ¶
type HTTPHandlerWrapper struct {
// contains filtered or unexported fields
}
HTTPHandlerWrapper is used to wrap http handler middleware
func (*HTTPHandlerWrapper) ServeHTTP ¶
func (t *HTTPHandlerWrapper) ServeHTTP(rw http.ResponseWriter, r *http.Request)
type NegroniHandlerWrapper ¶
type NegroniHandlerWrapper struct {
// contains filtered or unexported fields
}
NegroniHandlerWrapper is used to wrap negroni handler middleware
func (*NegroniHandlerWrapper) ServeHTTP ¶
func (t *NegroniHandlerWrapper) ServeHTTP(rw http.ResponseWriter, r *http.Request, next http.HandlerFunc)
type Tracing ¶
type Tracing struct { Backend string `description:"Selects the tracking backend ('jaeger','zipkin')." export:"true"` ServiceName string `description:"Set the name for this service" export:"true"` Jaeger *jaeger.Config `description:"Settings for jaeger"` Zipkin *zipkin.Config `description:"Settings for zipkin"` // contains filtered or unexported fields }
Tracing middleware
func (*Tracing) NewEntryPoint ¶
NewEntryPoint creates a new middleware that the incoming request
func (*Tracing) NewForwarderMiddleware ¶
NewForwarderMiddleware creates a new forwarder middleware that traces the outgoing request
func (*Tracing) NewHTTPHandlerWrapper ¶
func (t *Tracing) NewHTTPHandlerWrapper(name string, handler http.Handler, clientSpanKind bool) http.Handler
NewHTTPHandlerWrapper return a http.Handler struct