This package contains filter for generating jaeger span
import "github.com/AccelByte/go-restful-plugins/v4/pkg/jaeger"Filter is restful.FilterFunction for generating jaeger span using zipkin headers
span := GetSpanFromRestfulContext(request.Request.Context())
// to add a tag
AddTag(span, "exampleTag", "tag_value")
//to add a baggage item
AddBaggage(span, "exampleBaggage", "example")
// to add a log
AddLog(span, "exampleLog", "example")