census-ecosystem / opencensus-go-exporter-stackdriver

OpenCensus Go exporter for Stackdriver Monitoring and Trace
Apache License 2.0
67 stars 79 forks source link

Remove Sent and Recv prefixes #322

Closed zasweq closed 1 year ago

zasweq commented 1 year ago

This PR removes attaching the "Sent." and "Recv." prefixes to the Span Name dependent on the Span Kind. This is the functionality in Java and C++ stackdriver exporters. gRPC-Go's Observability project was running into issues where we would get "Sent.Sent.MethodName" and "Sent.Attempt.MethodName" in the stackdriver backends. gRPC-Go sets the names "Sent.MethodName" and "Attempt.MethodName", and this is what we want displayed in the backend.

Fixes issue #56.