@@ -162,7 +162,7 @@ export class FetchRequestAdapter implements RequestAdapter {
162
162
const telemetryPathValue = urlTemplate . replace ( / \{ \? [ ^ } ] + \} / gi, "" ) ;
163
163
return trace . getTracer ( this . observabilityOptions . getTracerInstrumentationName ( ) ) . startActiveSpan ( `${ methodName } - ${ telemetryPathValue } ` , async ( span ) => {
164
164
try {
165
- span . setAttribute ( "http .uri_template" , urlTemplate ) ;
165
+ span . setAttribute ( "url .uri_template" , urlTemplate ) ;
166
166
return await callback ( span ) ;
167
167
} finally {
168
168
span . end ( ) ;
@@ -457,14 +457,14 @@ export class FetchRequestAdapter implements RequestAdapter {
457
457
if ( response ) {
458
458
const responseContentLength = response . headers . get ( "Content-Length" ) ;
459
459
if ( responseContentLength ) {
460
- spanForAttributes . setAttribute ( "http.response_content_length " , parseInt ( responseContentLength ) ) ;
460
+ spanForAttributes . setAttribute ( "http.response.body.size " , parseInt ( responseContentLength ) ) ;
461
461
}
462
462
const responseContentType = response . headers . get ( "Content-Type" ) ;
463
463
if ( responseContentType ) {
464
- spanForAttributes . setAttribute ( "http.response_content_type " , responseContentType ) ;
464
+ spanForAttributes . setAttribute ( "http.response.header.content-type " , responseContentType ) ;
465
465
}
466
466
spanForAttributes . setAttribute ( "http.response.status_code" , response . status ) ;
467
- // getting the http.flavor (protocol version) is impossible with fetch API
467
+ // getting the network.protocol.version (protocol version) is impossible with fetch API
468
468
}
469
469
return response ;
470
470
} finally {
@@ -514,24 +514,24 @@ export class FetchRequestAdapter implements RequestAdapter {
514
514
try {
515
515
const method = requestInfo . httpMethod ?. toString ( ) ;
516
516
const uri = requestInfo . URL ;
517
- spanForAttributes . setAttribute ( "http.method" , method ?? "" ) ;
517
+ spanForAttributes . setAttribute ( "http.request. method" , method ?? "" ) ;
518
518
const uriContainsScheme = uri . indexOf ( "://" ) > - 1 ;
519
519
const schemeSplatUri = uri . split ( "://" ) ;
520
520
if ( uriContainsScheme ) {
521
- spanForAttributes . setAttribute ( "http.scheme " , schemeSplatUri [ 0 ] ) ;
521
+ spanForAttributes . setAttribute ( "server.address " , schemeSplatUri [ 0 ] ) ;
522
522
}
523
523
const uriWithoutScheme = uriContainsScheme ? schemeSplatUri [ 1 ] : uri ;
524
- spanForAttributes . setAttribute ( "http.host " , uriWithoutScheme . split ( "/" ) [ 0 ] ) ;
524
+ spanForAttributes . setAttribute ( "url.scheme " , uriWithoutScheme . split ( "/" ) [ 0 ] ) ;
525
525
if ( this . observabilityOptions . includeEUIIAttributes ) {
526
- spanForAttributes . setAttribute ( "http.uri " , decodeURIComponent ( uri ) ) ;
526
+ spanForAttributes . setAttribute ( "url.full " , decodeURIComponent ( uri ) ) ;
527
527
}
528
528
const requestContentLength = requestInfo . headers . tryGetValue ( "Content-Length" ) ;
529
529
if ( requestContentLength ) {
530
- spanForAttributes . setAttribute ( "http.request_content_length " , parseInt ( requestContentLength [ 0 ] ) ) ;
530
+ spanForAttributes . setAttribute ( "http.response.body.size " , parseInt ( requestContentLength [ 0 ] ) ) ;
531
531
}
532
532
const requestContentType = requestInfo . headers . tryGetValue ( "Content-Type" ) ;
533
533
if ( requestContentType ) {
534
- spanForAttributes . setAttribute ( "http.request_content_type " , requestContentType ) ;
534
+ spanForAttributes . setAttribute ( "http.request.header.content-type " , requestContentType ) ;
535
535
}
536
536
const headers : [ string , string ] [ ] | undefined = requestInfo . headers ? Array . from ( requestInfo . headers . keys ( ) ) . map ( ( key ) => [ key . toString ( ) . toLocaleLowerCase ( ) , this . foldHeaderValue ( requestInfo . headers . tryGetValue ( key ) ) ] ) : undefined ;
537
537
const request = {
0 commit comments