fixup tracing
Some checks failed
codeql / analyze (go) (push) Failing after 1m41s
build / test (push) Failing after 1m46s
build / lint (push) Successful in 9m18s

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2024-04-14 23:24:44 +03:00
parent 6499c64759
commit 0dfee57dd4

View File

@ -315,6 +315,7 @@ func (w *wrapperConn) Ping(ctx context.Context) error {
} else {
nctx, span = w.opts.Tracer.Start(ctx, "sdk.database", tracer.WithSpanKind(tracer.SpanKindClient))
}
span.AddLabels("db.method", "Ping")
defer span.Finish()
labels := []string{labelMethod, "Ping"}
ts := time.Now()