I notice that there is SpanDecoratorFunc to use, and I want to add peer.Address Tag in both client and server span, according to the doc
// SpanDecoratorFunc provides an (optional) mechanism for otgrpc users to add
// arbitrary tags/logs/etc to the opentracing.Span associated with client
// and/or server RPCs.
type SpanDecoratorFunc func(
span opentracing.Span,
method string,
req, resp interface{},
grpcError error)
How can I get remote address without context.Context or peer.Peer as argument?