-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remote resources not visible on X-Ray map #15
Comments
Hi @bonclay7 - what happens if you start the span with |
Hi @anuraaga, Thanks for the tips, that actually did work ! tracer := otel.GetTracerProvider().Tracer("petlistadoptions")
_, span := tracer.Start(ctx, "mssql query", trace.WithSpanKind(trace.SpanKindClient)) The trace appears as remote. I suppose for now there's no detection for the service icon right ? |
Great to hear that helped. Icon and other metadata are populated based on attributes in the span. Database spans would have some of these I guess it's tedious to fill all these yourself though, I hope there is sql instrumentation in go implemented soon so you can just use that. Then it should get recognized properly. |
looks like issue is resolved so closing this. Feel free to open if the issue still exists. |
Hi !
I have an application connecting to a SQL database, and since there's not yet support for database/sql auto-instrumentation, I did a custom tracing implementation.
The link to the database do not appear as a remote resource and doesn't show up in the trace map
Environment details :
amazon/aws-otel-collector:latest
as sidecarRaw trace data
The text was updated successfully, but these errors were encountered: