@@ -58,7 +58,7 @@ var contentTypeToExtension = map[string]string{
58
58
}
59
59
60
60
func (i * handler ) serveCodec (ctx context.Context , w http.ResponseWriter , r * http.Request , imPath ImmutablePath , contentPath ipath.Path , begin time.Time , requestedContentType string ) bool {
61
- ctx , span := spanTrace (ctx , "ServeCodec" , trace .WithAttributes (attribute .String ("path" , imPath .String ()), attribute .String ("requestedContentType" , requestedContentType )))
61
+ ctx , span := spanTrace (ctx , "Handler. ServeCodec" , trace .WithAttributes (attribute .String ("path" , imPath .String ()), attribute .String ("requestedContentType" , requestedContentType )))
62
62
defer span .End ()
63
63
64
64
pathMetadata , data , err := i .api .GetBlock (ctx , imPath )
@@ -77,7 +77,7 @@ func (i *handler) serveCodec(ctx context.Context, w http.ResponseWriter, r *http
77
77
}
78
78
79
79
func (i * handler ) renderCodec (ctx context.Context , w http.ResponseWriter , r * http.Request , resolvedPath ipath.Resolved , blockData io.ReadSeekCloser , contentPath ipath.Path , begin time.Time , requestedContentType string ) bool {
80
- ctx , span := spanTrace (ctx , "RenderCodec" , trace .WithAttributes (attribute .String ("path" , resolvedPath .String ()), attribute .String ("requestedContentType" , requestedContentType )))
80
+ ctx , span := spanTrace (ctx , "Handler. RenderCodec" , trace .WithAttributes (attribute .String ("path" , resolvedPath .String ()), attribute .String ("requestedContentType" , requestedContentType )))
81
81
defer span .End ()
82
82
83
83
blockCid := resolvedPath .Cid ()
0 commit comments