mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Summary: Pull Request resolved: https://github.com/facebookexternal/fbc/pull/1192 Pull Request resolved: https://github.com/facebookincubator/ent/pull/11 Reviewed By: alexsn Differential Revision: D16377224 fbshipit-source-id: 07ca7436eb9b64fbe2299568560b91466b2417ba
61 lines
1.9 KiB
Go
61 lines
1.9 KiB
Go
package ocgremlin
|
|
|
|
import (
|
|
"context"
|
|
|
|
"fbc/ent/dialect/gremlin"
|
|
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// Transport is an gremlin.RoundTripper that instruments all outgoing requests with
|
|
// OpenCensus stats and tracing.
|
|
type Transport struct {
|
|
// Base is a wrapped gremlin.RoundTripper that does the actual requests.
|
|
Base gremlin.RoundTripper
|
|
|
|
// StartOptions are applied to the span started by this Transport around each
|
|
// request.
|
|
//
|
|
// StartOptions.SpanKind will always be set to trace.SpanKindClient
|
|
// for spans started by this transport.
|
|
StartOptions trace.StartOptions
|
|
|
|
// GetStartOptions allows to set start options per request. If set,
|
|
// StartOptions is going to be ignored.
|
|
GetStartOptions func(context.Context, *gremlin.Request) trace.StartOptions
|
|
|
|
// NameFromRequest holds the function to use for generating the span name
|
|
// from the information found in the outgoing Gremlin Request. By default the
|
|
// name equals the URL Path.
|
|
FormatSpanName func(context.Context, *gremlin.Request) string
|
|
|
|
// WithQuery, if set to true, will enable recording of gremlin queries in spans.
|
|
// Only allow this if it is safe to have queries recorded with respect to
|
|
// security.
|
|
WithQuery bool
|
|
}
|
|
|
|
// RoundTrip implements gremlin.RoundTripper, delegating to Base and recording stats and traces for the request.
|
|
func (t *Transport) RoundTrip(ctx context.Context, req *gremlin.Request) (*gremlin.Response, error) {
|
|
spanNameFormatter := t.FormatSpanName
|
|
if spanNameFormatter == nil {
|
|
spanNameFormatter = func(context.Context, *gremlin.Request) string {
|
|
return "gremlin:traversal"
|
|
}
|
|
}
|
|
startOpts := t.StartOptions
|
|
if t.GetStartOptions != nil {
|
|
startOpts = t.GetStartOptions(ctx, req)
|
|
}
|
|
|
|
var rt gremlin.RoundTripper = &traceTransport{
|
|
base: t.Base,
|
|
formatSpanName: spanNameFormatter,
|
|
startOptions: startOpts,
|
|
withQuery: t.WithQuery,
|
|
}
|
|
rt = statsTransport{rt}
|
|
return rt.RoundTrip(ctx, req)
|
|
}
|