diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-01-13 20:06:42 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-01-14 09:54:48 +0100 |
commit | 4fb24ab145ad75051092e4e76f720f533ad7bb71 (patch) | |
tree | d4043c45747102853be054cc8daa04af5ae0095b /pkg | |
parent | 79ec2a9a6d5d39d4f0b6253395b2434d70ba174d (diff) | |
download | podman-4fb24ab145ad75051092e4e76f720f533ad7bb71.tar.gz podman-4fb24ab145ad75051092e4e76f720f533ad7bb71.tar.bz2 podman-4fb24ab145ad75051092e4e76f720f533ad7bb71.zip |
make lint: include pkg/tracing
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/tracing/tracing.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/tracing/tracing.go b/pkg/tracing/tracing.go index d028ddf8f..5be24faaa 100644 --- a/pkg/tracing/tracing.go +++ b/pkg/tracing/tracing.go @@ -12,6 +12,7 @@ import ( // Init returns an instance of Jaeger Tracer that samples 100% of traces and logs all spans to stdout. func Init(service string) (opentracing.Tracer, io.Closer) { cfg := &config.Configuration{ + ServiceName: service, Sampler: &config.SamplerConfig{ Type: "const", Param: 1, @@ -20,7 +21,7 @@ func Init(service string) (opentracing.Tracer, io.Closer) { LogSpans: true, }, } - tracer, closer, err := cfg.New(service, config.Logger(jaeger.StdLogger)) + tracer, closer, err := cfg.NewTracer(config.Logger(jaeger.StdLogger)) if err != nil { panic(fmt.Sprintf("ERROR: cannot init Jaeger: %v\n", err)) } |