You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
When I made a sql query (like select * from sql where id = 1), I got four traces (see screenshot). I expected that there was a single trace that represented the whole execution path for this query, not four separate traces each of which represented a phase of the execution path.
Hi,
When I made a sql query (like
select * from sql where id = 1
), I got four traces (see screenshot). I expected that there was a single trace that represented the whole execution path for this query, not four separate traces each of which represented a phase of the execution path.According to the source code https://github.com/src-d/go-mysql-server/blob/master/server/handler.go#L78-L90, a context
ctx
is created and is passed intoQuery
. There is no root span created in between.Is there a way to create a root span without changing the source code? Thanks!
The text was updated successfully, but these errors were encountered: