Documentation
¶
Overview ¶
Package ppfasthttp instruments the valyala/fasthttp package (https://github.com/valyala/fasthttp).
This package instruments inbound requests handled by a fasthttp instance. Use WrapHandler to select the handlers you want to track:
fasthttp.ListenAndServe(":9000", func(ctx *fasthttp.RequestCtx) { path := string(ctx.Path()) if strings.HasPrefix(path, "/foo") { ppfasthttp.WrapHandler(fooHandler, "/foo")(ctx) } else if strings.HasPrefix(path, "/bar") { ppfasthttp.WrapHandler(barHandler, "/bar")(ctx) } })
WrapHandler sets the pinpoint.Tracer as a user value of fasthttp handler's context. By using the ppfasthttp.CtxKey, this tracer can be obtained.
func requestHandler(ctx *fasthttp.RequestCtx) { tracer := pinpoint.FromContext(ctx.UserValue(ppfasthttp.CtxKey).(context.Context))
This package instruments outbound requests and add distributed tracing headers. Use DoClient.
err := ppfasthttp.DoClient(func() error { return hc.Do(req, resp) }, ctx, req, resp)
It is necessary to pass the context containing the pinpoint.Tracer to DoClient.
Index ¶
Constants ¶
const CtxKey = "pinpoint"
Variables ¶
This section is empty.
Functions ¶
func DoClient ¶
func DoClient(doFunc func() error, ctx context.Context, req *fasthttp.Request, res *fasthttp.Response) error
DoClient instruments outbound requests and add distributed tracing headers.
func WrapHandler ¶
func WrapHandler(handler fasthttp.RequestHandler, pattern ...string) fasthttp.RequestHandler
WrapHandler wraps the given http request handler.
Types ¶
This section is empty.