diff --git a/generated/attributes/http.md b/generated/attributes/http.md index e2cc0d9..a24a05c 100644 --- a/generated/attributes/http.md +++ b/generated/attributes/http.md @@ -82,10 +82,10 @@ The UNIX timestamp representing the time immediately before the user agent start | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.111` | ### http.request.connection_end @@ -93,10 +93,10 @@ The UNIX timestamp representing the time immediately after the browser finishes | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.15` | ### http.request.domain_lookup_end @@ -104,10 +104,10 @@ The UNIX timestamp representing the time immediately after the browser finishes | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.201` | ### http.request.domain_lookup_start @@ -115,10 +115,10 @@ The UNIX timestamp representing the time immediately before the browser starts t | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.322` | ### http.request.fetch_start @@ -126,10 +126,10 @@ The UNIX timestamp representing the time immediately before the browser starts t | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.389` | ### http.request.header.\ @@ -164,7 +164,7 @@ The UNIX timestamp representing the timestamp immediately after receiving the la | Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829558` | +| Example | `1732829558.502` | ### http.request.redirect_start @@ -172,10 +172,10 @@ The UNIX timestamp representing the start time of the fetch which that initiates | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.495` | ### http.request.request_start @@ -183,10 +183,10 @@ The UNIX timestamp representing the time immediately before the browser starts r | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.51` | ### http.request.resend_count @@ -205,10 +205,10 @@ The UNIX timestamp representing the time immediately after the browser receives | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.89` | ### http.request.response_start @@ -216,10 +216,10 @@ The UNIX timestamp representing the time immediately before the browser starts r | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.7` | ### http.request.secure_connection_start @@ -227,10 +227,10 @@ The UNIX timestamp representing the time immediately before the browser starts t | Property | Value | | --- | --- | -| Type | `integer` | +| Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829555` | +| Example | `1732829555.73` | ### http.request.worker_start @@ -241,7 +241,7 @@ The UNIX timestamp representing the timestamp immediately before dispatching the | Type | `double` | | Has PII | false | | Exists in OpenTelemetry | No | -| Example | `1732829553` | +| Example | `1732829553.68` | ### http.response.body.size diff --git a/javascript/sentry-conventions/src/attributes.ts b/javascript/sentry-conventions/src/attributes.ts index 5e92e0a..73f98ce 100644 --- a/javascript/sentry-conventions/src/attributes.ts +++ b/javascript/sentry-conventions/src/attributes.ts @@ -3130,7 +3130,7 @@ export type HTTP_QUERY_TYPE = string; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.111 */ export const HTTP_REQUEST_CONNECT_START = 'http.request.connect_start'; @@ -3150,7 +3150,7 @@ export type HTTP_REQUEST_CONNECT_START_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.15 */ export const HTTP_REQUEST_CONNECTION_END = 'http.request.connection_end'; @@ -3170,7 +3170,7 @@ export type HTTP_REQUEST_CONNECTION_END_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.201 */ export const HTTP_REQUEST_DOMAIN_LOOKUP_END = 'http.request.domain_lookup_end'; @@ -3190,7 +3190,7 @@ export type HTTP_REQUEST_DOMAIN_LOOKUP_END_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.322 */ export const HTTP_REQUEST_DOMAIN_LOOKUP_START = 'http.request.domain_lookup_start'; @@ -3210,7 +3210,7 @@ export type HTTP_REQUEST_DOMAIN_LOOKUP_START_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.389 */ export const HTTP_REQUEST_FETCH_START = 'http.request.fetch_start'; @@ -3274,7 +3274,7 @@ export type HTTP_REQUEST_METHOD_TYPE = string; * * Attribute defined in OTEL: No * - * @example 1732829558 + * @example 1732829558.502 */ export const HTTP_REQUEST_REDIRECT_END = 'http.request.redirect_end'; @@ -3294,7 +3294,7 @@ export type HTTP_REQUEST_REDIRECT_END_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.495 */ export const HTTP_REQUEST_REDIRECT_START = 'http.request.redirect_start'; @@ -3314,7 +3314,7 @@ export type HTTP_REQUEST_REDIRECT_START_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.51 */ export const HTTP_REQUEST_REQUEST_START = 'http.request.request_start'; @@ -3354,7 +3354,7 @@ export type HTTP_REQUEST_RESEND_COUNT_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.89 */ export const HTTP_REQUEST_RESPONSE_END = 'http.request.response_end'; @@ -3374,7 +3374,7 @@ export type HTTP_REQUEST_RESPONSE_END_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.7 */ export const HTTP_REQUEST_RESPONSE_START = 'http.request.response_start'; @@ -3394,7 +3394,7 @@ export type HTTP_REQUEST_RESPONSE_START_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829555 + * @example 1732829555.73 */ export const HTTP_REQUEST_SECURE_CONNECTION_START = 'http.request.secure_connection_start'; @@ -3414,7 +3414,7 @@ export type HTTP_REQUEST_SECURE_CONNECTION_START_TYPE = number; * * Attribute defined in OTEL: No * - * @example 1732829553 + * @example 1732829553.68 */ export const HTTP_REQUEST_WORKER_START = 'http.request.worker_start'; diff --git a/model/attributes/http/http__request__connect_start.json b/model/attributes/http/http__request__connect_start.json index e410ac8..f6d3f1d 100644 --- a/model/attributes/http/http__request__connect_start.json +++ b/model/attributes/http/http__request__connect_start.json @@ -1,11 +1,11 @@ { "key": "http.request.connect_start", "brief": "The UNIX timestamp representing the time immediately before the user agent starts establishing the connection to the server to retrieve the resource.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.111, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__connection_end.json b/model/attributes/http/http__request__connection_end.json index 1df4fb8..d396f0c 100644 --- a/model/attributes/http/http__request__connection_end.json +++ b/model/attributes/http/http__request__connection_end.json @@ -1,11 +1,11 @@ { "key": "http.request.connection_end", "brief": "The UNIX timestamp representing the time immediately after the browser finishes establishing the connection to the server to retrieve the resource. The timestamp value includes the time interval to establish the transport connection, as well as other time intervals such as TLS handshake and SOCKS authentication.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.15, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__domain_lookup_end.json b/model/attributes/http/http__request__domain_lookup_end.json index 6a267b1..5b4fb4a 100644 --- a/model/attributes/http/http__request__domain_lookup_end.json +++ b/model/attributes/http/http__request__domain_lookup_end.json @@ -1,11 +1,11 @@ { "key": "http.request.domain_lookup_end", "brief": "The UNIX timestamp representing the time immediately after the browser finishes the domain-name lookup for the resource.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.201, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__domain_lookup_start.json b/model/attributes/http/http__request__domain_lookup_start.json index 018d52f..3c633a4 100644 --- a/model/attributes/http/http__request__domain_lookup_start.json +++ b/model/attributes/http/http__request__domain_lookup_start.json @@ -1,11 +1,11 @@ { "key": "http.request.domain_lookup_start", "brief": "The UNIX timestamp representing the time immediately before the browser starts the domain name lookup for the resource.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.322, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__fetch_start.json b/model/attributes/http/http__request__fetch_start.json index 3499fde..23479ad 100644 --- a/model/attributes/http/http__request__fetch_start.json +++ b/model/attributes/http/http__request__fetch_start.json @@ -1,11 +1,11 @@ { "key": "http.request.fetch_start", "brief": "The UNIX timestamp representing the time immediately before the browser starts to fetch the resource.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.389, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__redirect_end.json b/model/attributes/http/http__request__redirect_end.json index 2458272..e3412b6 100644 --- a/model/attributes/http/http__request__redirect_end.json +++ b/model/attributes/http/http__request__redirect_end.json @@ -6,6 +6,6 @@ "key": "false" }, "is_in_otel": false, - "example": 1732829558, + "example": 1732829558.502, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__redirect_start.json b/model/attributes/http/http__request__redirect_start.json index b3a22d5..c30b76d 100644 --- a/model/attributes/http/http__request__redirect_start.json +++ b/model/attributes/http/http__request__redirect_start.json @@ -1,11 +1,11 @@ { "key": "http.request.redirect_start", "brief": "The UNIX timestamp representing the start time of the fetch which that initiates the redirect.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.495, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__request_start.json b/model/attributes/http/http__request__request_start.json index 8d30edd..b892618 100644 --- a/model/attributes/http/http__request__request_start.json +++ b/model/attributes/http/http__request__request_start.json @@ -1,11 +1,11 @@ { "key": "http.request.request_start", "brief": "The UNIX timestamp representing the time immediately before the browser starts requesting the resource from the server, cache, or local resource. If the transport connection fails and the browser retires the request, the value returned will be the start of the retry request.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.51, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__response_end.json b/model/attributes/http/http__request__response_end.json index a952b38..df09bd1 100644 --- a/model/attributes/http/http__request__response_end.json +++ b/model/attributes/http/http__request__response_end.json @@ -1,11 +1,11 @@ { "key": "http.request.response_end", "brief": "The UNIX timestamp representing the time immediately after the browser receives the last byte of the resource or immediately before the transport connection is closed, whichever comes first.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.89, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__response_start.json b/model/attributes/http/http__request__response_start.json index 1188584..0630bf3 100644 --- a/model/attributes/http/http__request__response_start.json +++ b/model/attributes/http/http__request__response_start.json @@ -1,11 +1,11 @@ { "key": "http.request.response_start", "brief": "The UNIX timestamp representing the time immediately before the browser starts requesting the resource from the server, cache, or local resource. If the transport connection fails and the browser retires the request, the value returned will be the start of the retry request.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.7, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__secure_connection_start.json b/model/attributes/http/http__request__secure_connection_start.json index c623a99..814c1d4 100644 --- a/model/attributes/http/http__request__secure_connection_start.json +++ b/model/attributes/http/http__request__secure_connection_start.json @@ -1,11 +1,11 @@ { "key": "http.request.secure_connection_start", "brief": "The UNIX timestamp representing the time immediately before the browser starts the handshake process to secure the current connection. If a secure connection is not used, the property returns zero.", - "type": "integer", + "type": "double", "pii": { "key": "false" }, "is_in_otel": false, - "example": 1732829555, + "example": 1732829555.73, "sdks": ["javascript-browser"] } diff --git a/model/attributes/http/http__request__worker_start.json b/model/attributes/http/http__request__worker_start.json index 5fc1333..046b897 100644 --- a/model/attributes/http/http__request__worker_start.json +++ b/model/attributes/http/http__request__worker_start.json @@ -6,6 +6,6 @@ "key": "false" }, "is_in_otel": false, - "example": 1732829553, + "example": 1732829553.68, "sdks": ["javascript-browser"] }