Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Client library: Use integers in span attributes again #208

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions packages/client-library-otel/src/utils/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export async function getResponseAttributes(
response: GlobalResponse | HonoResponse,
) {
const attributes: Attributes = {
[EXTRA_SEMATTRS_HTTP_RESPONSE_STATUS_CODE]: String(response.status),
[EXTRA_SEMATTRS_HTTP_RESPONSE_STATUS_CODE]: response.status,
[SEMATTRS_HTTP_SCHEME]: response.url.split(":")[0],
};

Expand All @@ -283,7 +283,14 @@ export async function getResponseAttributes(

const contentLength = response.headers.get("content-length");
if (contentLength) {
attributes[SEMATTRS_HTTP_RESPONSE_CONTENT_LENGTH] = contentLength;
try {
attributes[SEMATTRS_HTTP_RESPONSE_CONTENT_LENGTH] = Number.parseInt(
contentLength,
10,
);
} catch {
// ignore errors
}
}

const headers = response.headers;
Expand Down
Loading