From 410a0e1769e17d5ba8a2feeaa6f8205cae1830ef Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Wed, 9 Dec 2020 21:19:13 +0000 Subject: [PATCH] Use correct trace span name --- db/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/executor.go b/db/executor.go index ac9de430..6834eeb5 100644 --- a/db/executor.go +++ b/db/executor.go @@ -142,7 +142,7 @@ func (e *executor) conduct(ctx context.Context, stm sql.Statement) { // the execution time of this method, and // detect problems with long-running queries. - ctx, span := trc.Start(ctx, "db::execute") + ctx, span := trc.Start(ctx, "db::conduct") defer span.End() // If we are not inside a global transaction