Skip to content

Commit d45aec9

Browse files
authored
Align OTEL http attributes with latest standard (#1363)
* Allign otel attributes * update versions
1 parent ddfff0c commit d45aec9

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

packages/abstractions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-abstractions",
3-
"version": "1.0.0-preview.64",
3+
"version": "1.0.0-preview.65",
44
"description": "Core abstractions for kiota generated libraries in TypeScript and JavaScript",
55
"main": "dist/es/src/index.js",
66
"module": "dist/es/src/index.js",

packages/authentication/azure/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-authentication-azure",
3-
"version": "1.0.0-preview.59",
3+
"version": "1.0.0-preview.60",
44
"description": "Authentication provider for Kiota using Azure Identity",
55
"main": "dist/es/src/index.js",
66
"module": "dist/es/src/index.js",

packages/authentication/spfx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-authentication-spfx",
3-
"version": "1.0.0-preview.53",
3+
"version": "1.0.0-preview.54",
44
"description": "Authentication provider for using Kiota in SPFx solutions",
55
"main": "dist/es/src/index.js",
66
"module": "dist/es/src/index.js",

packages/bundle/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-bundle",
3-
"version": "1.0.0-preview.7",
3+
"version": "1.0.0-preview.8",
44
"description": "Kiota Bundle package providing default implementations for client setup for kiota generated libraries in TypeScript and JavaScript",
55
"main": "dist/es/src/index.js",
66
"module": "dist/es/src/index.js",

packages/http/fetch/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-http-fetchlibrary",
3-
"version": "1.0.0-preview.63",
3+
"version": "1.0.0-preview.64",
44
"description": "Kiota request adapter implementation with fetch",
55
"keywords": [
66
"Kiota",

packages/http/fetch/src/fetchRequestAdapter.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export class FetchRequestAdapter implements RequestAdapter {
162162
const telemetryPathValue = urlTemplate.replace(/\{\?[^}]+\}/gi, "");
163163
return trace.getTracer(this.observabilityOptions.getTracerInstrumentationName()).startActiveSpan(`${methodName} - ${telemetryPathValue}`, async (span) => {
164164
try {
165-
span.setAttribute("http.uri_template", urlTemplate);
165+
span.setAttribute("url.uri_template", urlTemplate);
166166
return await callback(span);
167167
} finally {
168168
span.end();
@@ -457,14 +457,14 @@ export class FetchRequestAdapter implements RequestAdapter {
457457
if (response) {
458458
const responseContentLength = response.headers.get("Content-Length");
459459
if (responseContentLength) {
460-
spanForAttributes.setAttribute("http.response_content_length", parseInt(responseContentLength));
460+
spanForAttributes.setAttribute("http.response.body.size", parseInt(responseContentLength));
461461
}
462462
const responseContentType = response.headers.get("Content-Type");
463463
if (responseContentType) {
464-
spanForAttributes.setAttribute("http.response_content_type", responseContentType);
464+
spanForAttributes.setAttribute("http.response.header.content-type", responseContentType);
465465
}
466466
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
468468
}
469469
return response;
470470
} finally {
@@ -514,24 +514,24 @@ export class FetchRequestAdapter implements RequestAdapter {
514514
try {
515515
const method = requestInfo.httpMethod?.toString();
516516
const uri = requestInfo.URL;
517-
spanForAttributes.setAttribute("http.method", method ?? "");
517+
spanForAttributes.setAttribute("http.request.method", method ?? "");
518518
const uriContainsScheme = uri.indexOf("://") > -1;
519519
const schemeSplatUri = uri.split("://");
520520
if (uriContainsScheme) {
521-
spanForAttributes.setAttribute("http.scheme", schemeSplatUri[0]);
521+
spanForAttributes.setAttribute("server.address", schemeSplatUri[0]);
522522
}
523523
const uriWithoutScheme = uriContainsScheme ? schemeSplatUri[1] : uri;
524-
spanForAttributes.setAttribute("http.host", uriWithoutScheme.split("/")[0]);
524+
spanForAttributes.setAttribute("url.scheme", uriWithoutScheme.split("/")[0]);
525525
if (this.observabilityOptions.includeEUIIAttributes) {
526-
spanForAttributes.setAttribute("http.uri", decodeURIComponent(uri));
526+
spanForAttributes.setAttribute("url.full", decodeURIComponent(uri));
527527
}
528528
const requestContentLength = requestInfo.headers.tryGetValue("Content-Length");
529529
if (requestContentLength) {
530-
spanForAttributes.setAttribute("http.request_content_length", parseInt(requestContentLength[0]));
530+
spanForAttributes.setAttribute("http.response.body.size", parseInt(requestContentLength[0]));
531531
}
532532
const requestContentType = requestInfo.headers.tryGetValue("Content-Type");
533533
if (requestContentType) {
534-
spanForAttributes.setAttribute("http.request_content_type", requestContentType);
534+
spanForAttributes.setAttribute("http.request.header.content-type", requestContentType);
535535
}
536536
const headers: [string, string][] | undefined = requestInfo.headers ? Array.from(requestInfo.headers.keys()).map((key) => [key.toString().toLocaleLowerCase(), this.foldHeaderValue(requestInfo.headers.tryGetValue(key))]) : undefined;
537537
const request = {

packages/serialization/form/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-form",
3-
"version": "1.0.0-preview.52",
3+
"version": "1.0.0-preview.53",
44
"description": "Implementation of Kiota Serialization interfaces for URI from encoded",
55
"main": "dist/es/src/index.js",
66
"browser": {

packages/serialization/json/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-json",
3-
"version": "1.0.0-preview.64",
3+
"version": "1.0.0-preview.65",
44
"description": "Implementation of Kiota Serialization interfaces for JSON",
55
"main": "dist/es/src/index.js",
66
"type": "module",

packages/serialization/multipart/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-multipart",
3-
"version": "1.0.0-preview.42",
3+
"version": "1.0.0-preview.43",
44
"description": "Implementation of Kiota Serialization interfaces for multipart form data",
55
"main": "dist/es/src/index.js",
66
"module": "dist/es/src/index.js",

packages/serialization/text/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-text",
3-
"version": "1.0.0-preview.61",
3+
"version": "1.0.0-preview.62",
44
"description": "Implementation of Kiota Serialization interfaces for text",
55
"main": "dist/es/src/index.js",
66
"browser": {

0 commit comments

Comments
 (0)