diff options
author | 2020-11-10 20:03:14 +0100 | |
---|---|---|
committer | 2020-11-10 19:03:14 +0000 | |
commit | b7814204a49f05ecb9f5920bb28038b0f09e4cd8 (patch) | |
tree | d5a999b7e096a7b95fc0cd6cb358b4f7ed907ff9 /plugin/trace/trace.go | |
parent | dd2a1bfc82ea340e96b2a6639b836fba699bf807 (diff) | |
download | coredns-b7814204a49f05ecb9f5920bb28038b0f09e4cd8.tar.gz coredns-b7814204a49f05ecb9f5920bb28038b0f09e4cd8.tar.zst coredns-b7814204a49f05ecb9f5920bb28038b0f09e4cd8.zip |
plugin/trace: Fix zipkin json_v2 (#4180)
Automatically submitted.
Diffstat (limited to 'plugin/trace/trace.go')
-rw-r--r-- | plugin/trace/trace.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugin/trace/trace.go b/plugin/trace/trace.go index 4e1d1b4de..bbca68849 100644 --- a/plugin/trace/trace.go +++ b/plugin/trace/trace.go @@ -84,6 +84,7 @@ func (t *trace) setupZipkin() error { tracer, err := zipkin.NewTracer( reporter, zipkin.WithLocalEndpoint(recorder), + zipkin.WithSharedSpans(t.clientServer), ) if err != nil { return err |