From c741ec3049e7ee3af9c968d02aaf06213e212bfc Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Fri, 20 Feb 2026 14:47:15 -0500 Subject: [PATCH 1/7] feat: attribute definition --- .../sentry-conventions/src/attributes.ts | 33 +++++++++++++++++++ .../sentry/sentry__log__sequence.json | 10 ++++++ python/src/sentry_conventions/attributes.py | 18 ++++++++++ 3 files changed, 61 insertions(+) create mode 100644 model/attributes/sentry/sentry__log__sequence.json diff --git a/javascript/sentry-conventions/src/attributes.ts b/javascript/sentry-conventions/src/attributes.ts index 9690ba2b..2cf83c5d 100644 --- a/javascript/sentry-conventions/src/attributes.ts +++ b/javascript/sentry-conventions/src/attributes.ts @@ -6942,6 +6942,26 @@ export const SENTRY_KIND = 'sentry.kind'; */ export type SENTRY_KIND_TYPE = string; +// Path: model/attributes/sentry/sentry__log__sequence.json + +/** + * A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. `sentry.log.sequence` + * + * Attribute Value Type: `number` {@link SENTRY_LOG_SEQUENCE_TYPE} + * + * Contains PII: false + * + * Attribute defined in OTEL: No + * + * @example 42 + */ +export const SENTRY_LOG_SEQUENCE = 'sentry.log.sequence'; + +/** + * Type for {@link SENTRY_LOG_SEQUENCE} sentry.log.sequence + */ +export type SENTRY_LOG_SEQUENCE_TYPE = number; + // Path: model/attributes/sentry/sentry__message__parameter__[key].json /** @@ -9308,6 +9328,7 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_IDLE_SPAN_FINISH_REASON]: 'string', [SENTRY_IS_REMOTE]: 'boolean', [SENTRY_KIND]: 'string', + [SENTRY_LOG_SEQUENCE]: 'integer', [SENTRY_MESSAGE_PARAMETER_KEY]: 'string', [SENTRY_MESSAGE_TEMPLATE]: 'string', [SENTRY_MODULE_KEY]: 'string', @@ -9739,6 +9760,7 @@ export type AttributeName = | typeof SENTRY_IDLE_SPAN_FINISH_REASON | typeof SENTRY_IS_REMOTE | typeof SENTRY_KIND + | typeof SENTRY_LOG_SEQUENCE | typeof SENTRY_MESSAGE_PARAMETER_KEY | typeof SENTRY_MESSAGE_TEMPLATE | typeof SENTRY_MODULE_KEY @@ -13865,6 +13887,16 @@ export const ATTRIBUTE_METADATA: Record = { example: 'server', changelog: [{ version: '0.3.1', prs: [190] }], }, + [SENTRY_LOG_SEQUENCE]: { + brief: + 'A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.', + type: 'integer', + pii: { + isPii: 'false', + }, + isInOtel: false, + example: 42, + }, [SENTRY_MESSAGE_PARAMETER_KEY]: { brief: "A parameter used in the message template. can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0, sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id, sentry.message.parameter.user_id, etc)", @@ -15233,6 +15265,7 @@ export type Attributes = { [SENTRY_IDLE_SPAN_FINISH_REASON]?: SENTRY_IDLE_SPAN_FINISH_REASON_TYPE; [SENTRY_IS_REMOTE]?: SENTRY_IS_REMOTE_TYPE; [SENTRY_KIND]?: SENTRY_KIND_TYPE; + [SENTRY_LOG_SEQUENCE]?: SENTRY_LOG_SEQUENCE_TYPE; [SENTRY_MESSAGE_PARAMETER_KEY]?: SENTRY_MESSAGE_PARAMETER_KEY_TYPE; [SENTRY_MESSAGE_TEMPLATE]?: SENTRY_MESSAGE_TEMPLATE_TYPE; [SENTRY_MODULE_KEY]?: SENTRY_MODULE_KEY_TYPE; diff --git a/model/attributes/sentry/sentry__log__sequence.json b/model/attributes/sentry/sentry__log__sequence.json new file mode 100644 index 00000000..a49cb744 --- /dev/null +++ b/model/attributes/sentry/sentry__log__sequence.json @@ -0,0 +1,10 @@ +{ + "key": "sentry.log.sequence", + "brief": "A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", + "type": "integer", + "pii": { + "key": "false" + }, + "is_in_otel": false, + "example": 42 +} diff --git a/python/src/sentry_conventions/attributes.py b/python/src/sentry_conventions/attributes.py index f49af2ce..dacd1cf0 100644 --- a/python/src/sentry_conventions/attributes.py +++ b/python/src/sentry_conventions/attributes.py @@ -3912,6 +3912,16 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: "server" """ + # Path: model/attributes/sentry/sentry__log__sequence.json + SENTRY_LOG_SEQUENCE: Literal["sentry.log.sequence"] = "sentry.log.sequence" + """A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. + + Type: int + Contains PII: false + Defined in OTEL: No + Example: 42 + """ + # Path: model/attributes/sentry/sentry__message__parameter__[key].json SENTRY_MESSAGE_PARAMETER_KEY: Literal["sentry.message.parameter."] = ( "sentry.message.parameter." @@ -8839,6 +8849,13 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ChangelogEntry(version="0.3.1", prs=[190]), ], ), + "sentry.log.sequence": AttributeMetadata( + brief="A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", + type=AttributeType.INTEGER, + pii=PiiInfo(isPii=IsPii.FALSE), + is_in_otel=False, + example=42, + ), "sentry.message.parameter.": AttributeMetadata( brief="A parameter used in the message template. can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0, sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id, sentry.message.parameter.user_id, etc)", type=AttributeType.STRING, @@ -10203,6 +10220,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.idle_span_finish_reason": str, "sentry.is_remote": bool, "sentry.kind": str, + "sentry.log.sequence": int, "sentry.message.parameter.": str, "sentry.message.template": str, "sentry.module.": str, From a6aba73fe35976d9a615be89e927a74a4bacccd6 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Wed, 4 Mar 2026 17:13:36 -0500 Subject: [PATCH 2/7] feat: Add sentry.timestamp.sequence attribute definition Add attribute for deterministic ordering of logs and metrics when timestamps share the same integer millisecond. Starts at 0 on SDK init, increments by 1 per captured item, resets when the millisecond changes. Co-Authored-By: Claude Opus 4.6 --- .../sentry-conventions/src/attributes.ts | 1471 ++++++++++++----- model/attributes/ai/ai__citations.json | 2 +- .../ai/ai__completion_tokens__used.json | 4 + model/attributes/ai/ai__documents.json | 2 +- model/attributes/ai/ai__finish_reason.json | 4 + .../attributes/ai/ai__frequency_penalty.json | 4 + model/attributes/ai/ai__function_call.json | 4 + model/attributes/ai/ai__generation_id.json | 4 + model/attributes/ai/ai__input_messages.json | 4 + .../attributes/ai/ai__is_search_required.json | 2 +- model/attributes/ai/ai__metadata.json | 2 +- model/attributes/ai/ai__model__provider.json | 4 + model/attributes/ai/ai__model_id.json | 4 + model/attributes/ai/ai__pipeline__name.json | 4 + model/attributes/ai/ai__preamble.json | 2 +- model/attributes/ai/ai__presence_penalty.json | 4 + .../ai/ai__prompt_tokens__used.json | 4 + model/attributes/ai/ai__raw_prompting.json | 2 +- model/attributes/ai/ai__response_format.json | 2 +- model/attributes/ai/ai__responses.json | 4 + model/attributes/ai/ai__search_queries.json | 2 +- model/attributes/ai/ai__search_results.json | 2 +- model/attributes/ai/ai__seed.json | 4 + model/attributes/ai/ai__streaming.json | 4 + model/attributes/ai/ai__tags.json | 2 +- model/attributes/ai/ai__temperature.json | 4 + model/attributes/ai/ai__texts.json | 2 +- model/attributes/ai/ai__tool_calls.json | 4 + model/attributes/ai/ai__tools.json | 4 + model/attributes/ai/ai__top_k.json | 4 + model/attributes/ai/ai__top_p.json | 4 + model/attributes/ai/ai__total_cost.json | 2 +- .../attributes/ai/ai__total_tokens__used.json | 4 + model/attributes/ai/ai__warnings.json | 2 +- model/attributes/app_start_type.json | 4 + model/attributes/blocked_main_thread.json | 4 + model/attributes/browser/browser__name.json | 4 + .../browser/browser__report__type.json | 4 + .../browser/browser__script__invoker.json | 4 + .../browser__script__invoker_type.json | 4 + ...browser__script__source_char_position.json | 4 + .../attributes/browser/browser__version.json | 4 + model/attributes/cache/cache__hit.json | 4 + model/attributes/cache/cache__item_size.json | 4 + model/attributes/cache/cache__key.json | 4 + model/attributes/cache/cache__operation.json | 4 + model/attributes/cache/cache__ttl.json | 4 + model/attributes/channel.json | 4 + model/attributes/client/client__address.json | 4 + model/attributes/client/client__port.json | 4 + .../cloudflare/cloudflare__d1__duration.json | 4 + .../cloudflare/cloudflare__d1__rows_read.json | 4 + .../cloudflare__d1__rows_written.json | 4 + model/attributes/code/code__file__path.json | 4 + model/attributes/code/code__filepath.json | 4 + model/attributes/code/code__function.json | 4 + .../attributes/code/code__function__name.json | 4 + model/attributes/code/code__line__number.json | 4 + model/attributes/code/code__lineno.json | 4 + model/attributes/code/code__namespace.json | 4 + .../attributes/culture/culture__calendar.json | 4 + .../culture/culture__display_name.json | 4 + .../culture/culture__is_24_hour_format.json | 4 + model/attributes/culture/culture__locale.json | 4 + .../attributes/culture/culture__timezone.json | 4 + model/attributes/db/db__collection__name.json | 4 + model/attributes/db/db__name.json | 4 + model/attributes/db/db__namespace.json | 4 + model/attributes/db/db__operation.json | 4 + model/attributes/db/db__operation__name.json | 4 + .../db/db__query__parameter__[key].json | 4 + model/attributes/db/db__query__summary.json | 4 + model/attributes/db/db__query__text.json | 4 + .../attributes/db/db__redis__connection.json | 4 + .../attributes/db/db__redis__parameters.json | 4 + model/attributes/db/db__sql__bindings.json | 4 + model/attributes/db/db__statement.json | 4 + model/attributes/db/db__system.json | 4 + model/attributes/db/db__system__name.json | 4 + model/attributes/db/db__user.json | 4 + model/attributes/device/device__brand.json | 4 + model/attributes/device/device__family.json | 4 + model/attributes/device/device__model.json | 4 + model/attributes/environment.json | 4 + model/attributes/error/error__type.json | 4 + model/attributes/event/event__id.json | 4 + model/attributes/event/event__name.json | 4 + .../exception/exception__escaped.json | 4 + .../exception/exception__message.json | 4 + .../exception/exception__stacktrace.json | 4 + .../attributes/exception/exception__type.json | 4 + model/attributes/faas/faas__coldstart.json | 4 + model/attributes/faas/faas__cron.json | 4 + model/attributes/faas/faas__time.json | 4 + model/attributes/faas/faas__trigger.json | 4 + .../flag/flag__evaluation__[key].json | 4 + model/attributes/frames/frames__delay.json | 4 + model/attributes/frames/frames__frozen.json | 4 + model/attributes/frames/frames__slow.json | 4 + model/attributes/frames/frames__total.json | 4 + model/attributes/fs_error.json | 4 + .../gen_ai/gen_ai__agent__name.json | 4 + .../gen_ai/gen_ai__conversation__id.json | 4 + .../gen_ai/gen_ai__cost__input_tokens.json | 4 + .../gen_ai/gen_ai__cost__output_tokens.json | 4 + .../gen_ai/gen_ai__cost__total_tokens.json | 2 +- .../gen_ai/gen_ai__embeddings__input.json | 4 + .../gen_ai/gen_ai__input__messages.json | 2 +- .../gen_ai/gen_ai__operation__name.json | 4 + .../gen_ai/gen_ai__operation__type.json | 4 + .../gen_ai/gen_ai__output__messages.json | 4 + .../gen_ai/gen_ai__pipeline__name.json | 4 + model/attributes/gen_ai/gen_ai__prompt.json | 4 + .../gen_ai/gen_ai__provider__name.json | 4 + .../gen_ai__request__available_tools.json | 4 + .../gen_ai__request__frequency_penalty.json | 4 + .../gen_ai/gen_ai__request__max_tokens.json | 4 + .../gen_ai/gen_ai__request__messages.json | 4 + .../gen_ai/gen_ai__request__model.json | 4 + .../gen_ai__request__presence_penalty.json | 4 + .../gen_ai/gen_ai__request__seed.json | 4 + .../gen_ai/gen_ai__request__temperature.json | 4 + .../gen_ai/gen_ai__request__top_k.json | 4 + .../gen_ai/gen_ai__request__top_p.json | 4 + .../gen_ai__response__finish_reasons.json | 4 + .../gen_ai/gen_ai__response__id.json | 4 + .../gen_ai/gen_ai__response__model.json | 4 + .../gen_ai/gen_ai__response__streaming.json | 4 + .../gen_ai/gen_ai__response__text.json | 4 + ...gen_ai__response__time_to_first_token.json | 4 + .../gen_ai__response__tokens_per_second.json | 4 + .../gen_ai/gen_ai__response__tool_calls.json | 4 + model/attributes/gen_ai/gen_ai__system.json | 4 + .../gen_ai/gen_ai__system__message.json | 4 + .../gen_ai/gen_ai__system_instructions.json | 2 +- .../gen_ai/gen_ai__tool__call__arguments.json | 2 +- .../gen_ai/gen_ai__tool__call__result.json | 2 +- .../gen_ai/gen_ai__tool__definitions.json | 4 + .../gen_ai/gen_ai__tool__description.json | 4 + .../gen_ai/gen_ai__tool__input.json | 2 +- .../gen_ai/gen_ai__tool__message.json | 2 +- .../attributes/gen_ai/gen_ai__tool__name.json | 4 + .../gen_ai/gen_ai__tool__output.json | 2 +- .../attributes/gen_ai/gen_ai__tool__type.json | 4 + .../gen_ai__usage__completion_tokens.json | 4 + .../gen_ai/gen_ai__usage__input_tokens.json | 2 +- ..._ai__usage__input_tokens__cache_write.json | 4 + .../gen_ai__usage__input_tokens__cached.json | 4 + .../gen_ai/gen_ai__usage__output_tokens.json | 2 +- ...n_ai__usage__output_tokens__reasoning.json | 4 + .../gen_ai/gen_ai__usage__prompt_tokens.json | 4 + .../gen_ai/gen_ai__usage__total_tokens.json | 4 + .../graphql/graphql__operation__name.json | 4 + .../graphql/graphql__operation__type.json | 4 + model/attributes/http/http__client_ip.json | 4 + ...http__decoded_response_content_length.json | 4 + model/attributes/http/http__flavor.json | 4 + model/attributes/http/http__fragment.json | 4 + model/attributes/http/http__host.json | 4 + model/attributes/http/http__method.json | 4 + model/attributes/http/http__query.json | 4 + .../http/http__request__connect_start.json | 4 + .../http/http__request__connection_end.json | 4 + .../http__request__domain_lookup_end.json | 4 + .../http__request__domain_lookup_start.json | 4 + .../http/http__request__fetch_start.json | 4 + .../http/http__request__header__[key].json | 4 + .../http/http__request__method.json | 4 + .../http/http__request__redirect_end.json | 4 + .../http/http__request__redirect_start.json | 4 + .../http/http__request__request_start.json | 4 + .../http/http__request__resend_count.json | 4 + .../http/http__request__response_end.json | 4 + .../http/http__request__response_start.json | 4 + ...ttp__request__secure_connection_start.json | 4 + .../http__request__time_to_first_byte.json | 4 + .../http/http__request__worker_start.json | 4 + .../http/http__response__body__size.json | 4 + .../http/http__response__header__[key].json | 4 + ...ttp__response__header__content-length.json | 4 + .../attributes/http/http__response__size.json | 4 + .../http/http__response__status_code.json | 4 + .../http/http__response_content_length.json | 4 + .../http/http__response_transfer_size.json | 4 + model/attributes/http/http__route.json | 4 + model/attributes/http/http__scheme.json | 4 + .../http__server__request__time_in_queue.json | 2 +- model/attributes/http/http__server_name.json | 4 + model/attributes/http/http__status_code.json | 4 + model/attributes/http/http__target.json | 4 + model/attributes/http/http__url.json | 4 + model/attributes/http/http__user_agent.json | 4 + model/attributes/id.json | 4 + model/attributes/jvm/jvm__gc__action.json | 4 + model/attributes/jvm/jvm__gc__name.json | 4 + .../jvm/jvm__memory__pool__name.json | 4 + model/attributes/jvm/jvm__memory__type.json | 4 + model/attributes/jvm/jvm__thread__daemon.json | 4 + model/attributes/jvm/jvm__thread__state.json | 4 + model/attributes/lcp/lcp__element.json | 4 + model/attributes/lcp/lcp__id.json | 4 + model/attributes/lcp/lcp__size.json | 4 + model/attributes/lcp/lcp__url.json | 4 + model/attributes/logger/logger__name.json | 4 + .../mcp/mcp__cancelled__reason.json | 4 + .../mcp/mcp__cancelled__request_id.json | 4 + model/attributes/mcp/mcp__client__name.json | 4 + model/attributes/mcp/mcp__client__title.json | 4 + .../attributes/mcp/mcp__client__version.json | 4 + .../attributes/mcp/mcp__lifecycle__phase.json | 4 + .../mcp/mcp__logging__data_type.json | 4 + model/attributes/mcp/mcp__logging__level.json | 4 + .../attributes/mcp/mcp__logging__logger.json | 4 + .../attributes/mcp/mcp__logging__message.json | 4 + model/attributes/mcp/mcp__method__name.json | 4 + .../mcp/mcp__progress__current.json | 4 + .../mcp/mcp__progress__message.json | 4 + .../mcp/mcp__progress__percentage.json | 4 + .../attributes/mcp/mcp__progress__token.json | 4 + .../attributes/mcp/mcp__progress__total.json | 4 + model/attributes/mcp/mcp__prompt__name.json | 4 + .../mcp/mcp__prompt__result__description.json | 4 + .../mcp__prompt__result__message_content.json | 4 + .../mcp__prompt__result__message_count.json | 4 + .../mcp__prompt__result__message_role.json | 4 + .../attributes/mcp/mcp__protocol__ready.json | 4 + .../mcp/mcp__protocol__version.json | 4 + .../mcp/mcp__request__argument__[key].json | 4 + .../mcp/mcp__request__argument__name.json | 4 + .../mcp/mcp__request__argument__uri.json | 4 + model/attributes/mcp/mcp__request__id.json | 4 + .../mcp/mcp__resource__protocol.json | 4 + model/attributes/mcp/mcp__resource__uri.json | 4 + model/attributes/mcp/mcp__server__name.json | 4 + model/attributes/mcp/mcp__server__title.json | 4 + .../attributes/mcp/mcp__server__version.json | 4 + model/attributes/mcp/mcp__session__id.json | 4 + model/attributes/mcp/mcp__tool__name.json | 4 + .../mcp/mcp__tool__result__content.json | 4 + .../mcp/mcp__tool__result__content_count.json | 4 + .../mcp/mcp__tool__result__is_error.json | 4 + model/attributes/mcp/mcp__transport.json | 4 + model/attributes/mdc/mdc__[key].json | 4 + .../messaging__destination__connection.json | 4 + .../messaging__destination__name.json | 4 + .../messaging__message__body__size.json | 4 + .../messaging__message__envelope__size.json | 4 + .../messaging/messaging__message__id.json | 4 + .../messaging__message__receive__latency.json | 4 + .../messaging__message__retry__count.json | 4 + .../messaging/messaging__operation__type.json | 4 + .../messaging/messaging__system.json | 4 + model/attributes/method.json | 4 + .../navigation/navigation__type.json | 4 + model/attributes/nel/nel__elapsed_time.json | 4 + model/attributes/nel/nel__phase.json | 4 + model/attributes/nel/nel__referrer.json | 4 + .../nel/nel__sampling_function.json | 4 + model/attributes/nel/nel__type.json | 4 + model/attributes/net/net__host__ip.json | 4 + model/attributes/net/net__host__name.json | 4 + model/attributes/net/net__host__port.json | 4 + model/attributes/net/net__peer__ip.json | 4 + model/attributes/net/net__peer__name.json | 4 + model/attributes/net/net__peer__port.json | 4 + model/attributes/net/net__protocol__name.json | 4 + .../net/net__protocol__version.json | 4 + model/attributes/net/net__sock__family.json | 4 + .../attributes/net/net__sock__host__addr.json | 4 + .../attributes/net/net__sock__host__port.json | 4 + .../attributes/net/net__sock__peer__addr.json | 4 + .../attributes/net/net__sock__peer__name.json | 4 + .../attributes/net/net__sock__peer__port.json | 4 + model/attributes/net/net__transport.json | 4 + .../network/network__local__address.json | 4 + .../network/network__local__port.json | 4 + .../network/network__peer__address.json | 4 + .../network/network__peer__port.json | 4 + .../network/network__protocol__name.json | 4 + .../network/network__protocol__version.json | 4 + .../network/network__transport.json | 4 + model/attributes/network/network__type.json | 4 + model/attributes/os/os__build_id.json | 4 + model/attributes/os/os__description.json | 4 + model/attributes/os/os__name.json | 4 + model/attributes/os/os__type.json | 4 + model/attributes/os/os__version.json | 4 + model/attributes/otel/otel__scope__name.json | 4 + .../attributes/otel/otel__scope__version.json | 4 + model/attributes/otel/otel__status_code.json | 4 + .../otel/otel__status_description.json | 4 + model/attributes/params/params__[key].json | 4 + model/attributes/previous_route.json | 4 + .../process/process__executable__name.json | 4 + model/attributes/process/process__pid.json | 4 + .../process__runtime__description.json | 4 + .../process/process__runtime__name.json | 4 + .../process/process__runtime__version.json | 4 + model/attributes/query/query__[key].json | 4 + model/attributes/release.json | 4 + .../remix/remix__action_form_data__[key].json | 4 + model/attributes/replay_id.json | 4 + .../resource__deployment__environment.json | 2 +- ...source__deployment__environment__name.json | 4 + .../resource__render_blocking_status.json | 4 + model/attributes/route.json | 4 + .../rpc/rpc__grpc__status_code.json | 4 + model/attributes/rpc/rpc__service.json | 4 + model/attributes/sentry/sentry__action.json | 4 + .../sentry/sentry__browser__name.json | 4 + .../sentry/sentry__browser__version.json | 4 + .../sentry/sentry__cancellation_reason.json | 4 + model/attributes/sentry/sentry__category.json | 4 + .../sentry/sentry__client_sample_rate.json | 4 + .../sentry/sentry__description.json | 4 + model/attributes/sentry/sentry__dist.json | 4 + model/attributes/sentry/sentry__domain.json | 4 + .../sentry/sentry__dsc__environment.json | 4 + .../sentry/sentry__dsc__public_key.json | 4 + .../sentry/sentry__dsc__release.json | 4 + .../sentry/sentry__dsc__sample_rate.json | 4 + .../sentry/sentry__dsc__sampled.json | 4 + .../sentry/sentry__dsc__trace_id.json | 4 + .../sentry/sentry__dsc__transaction.json | 4 + .../sentry/sentry__environment.json | 4 + .../sentry/sentry__exclusive_time.json | 4 + .../sentry/sentry__graphql__operation.json | 4 + model/attributes/sentry/sentry__group.json | 4 + .../sentry/sentry__http__prefetch.json | 4 + .../sentry__idle_span_finish_reason.json | 4 + .../attributes/sentry/sentry__is_remote.json | 4 + model/attributes/sentry/sentry__kind.json | 4 + .../sentry/sentry__log__sequence.json | 10 - .../sentry__message__parameter__[key].json | 4 + .../sentry/sentry__message__template.json | 4 + .../sentry/sentry__module__[key].json | 4 + .../sentry__nextjs__ssr__function__route.json | 4 + .../sentry__nextjs__ssr__function__type.json | 4 + .../sentry/sentry__normalized_db_query.json | 4 + .../sentry__normalized_db_query__hash.json | 4 + .../sentry__normalized_description.json | 4 + .../sentry__observed_timestamp_nanos.json | 4 + model/attributes/sentry/sentry__op.json | 4 + model/attributes/sentry/sentry__origin.json | 4 + model/attributes/sentry/sentry__platform.json | 4 + .../sentry/sentry__profiler_id.json | 4 + model/attributes/sentry/sentry__release.json | 4 + .../attributes/sentry/sentry__replay_id.json | 4 + .../sentry/sentry__replay_is_buffering.json | 4 + .../sentry/sentry__sdk__integrations.json | 4 + .../attributes/sentry/sentry__sdk__name.json | 4 + .../sentry/sentry__sdk__version.json | 4 + .../sentry/sentry__segment__id.json | 4 + .../sentry/sentry__segment__name.json | 4 + .../attributes/sentry/sentry__segment_id.json | 4 + .../sentry/sentry__server_sample_rate.json | 4 + .../sentry/sentry__span__source.json | 4 + .../sentry/sentry__status__message.json | 4 + .../sentry/sentry__status_code.json | 4 + .../sentry/sentry__timestamp__sequence.json | 10 + .../sentry/sentry__trace__parent_span_id.json | 4 + .../sentry/sentry__transaction.json | 4 + model/attributes/server/server__address.json | 4 + model/attributes/server/server__port.json | 4 + model/attributes/service/service__name.json | 4 + .../attributes/service/service__version.json | 4 + model/attributes/thread/thread__id.json | 4 + model/attributes/thread/thread__name.json | 4 + model/attributes/timber/timber__tag.json | 4 + model/attributes/transaction.json | 4 + model/attributes/type.json | 4 + model/attributes/ui/ui__component_name.json | 4 + .../ui/ui__contributes_to_ttfd.json | 4 + .../ui/ui__contributes_to_ttid.json | 4 + model/attributes/url.json | 4 + model/attributes/url/url__domain.json | 4 + model/attributes/url/url__fragment.json | 4 + model/attributes/url/url__full.json | 4 + model/attributes/url/url__path.json | 4 + .../url/url__path__parameter__[key].json | 4 + model/attributes/url/url__port.json | 4 + model/attributes/url/url__query.json | 4 + model/attributes/url/url__scheme.json | 4 + model/attributes/url/url__template.json | 4 + model/attributes/user/user__email.json | 4 + model/attributes/user/user__full_name.json | 4 + model/attributes/user/user__geo__city.json | 4 + .../user/user__geo__country_code.json | 4 + model/attributes/user/user__geo__region.json | 4 + .../user/user__geo__subdivision.json | 4 + model/attributes/user/user__hash.json | 4 + model/attributes/user/user__id.json | 4 + model/attributes/user/user__ip_address.json | 4 + model/attributes/user/user__name.json | 4 + model/attributes/user/user__roles.json | 4 + .../user_agent/user_agent__original.json | 4 + model/attributes/vercel/vercel__branch.json | 4 + model/attributes/vercel/vercel__build_id.json | 4 + .../vercel/vercel__deployment_id.json | 4 + .../vercel/vercel__destination.json | 4 + .../attributes/vercel/vercel__edge_type.json | 4 + .../attributes/vercel/vercel__entrypoint.json | 4 + .../vercel/vercel__execution_region.json | 4 + model/attributes/vercel/vercel__id.json | 4 + .../attributes/vercel/vercel__ja3_digest.json | 4 + .../attributes/vercel/vercel__ja4_digest.json | 4 + model/attributes/vercel/vercel__log_type.json | 4 + .../attributes/vercel/vercel__project_id.json | 4 + .../vercel/vercel__project_name.json | 4 + .../vercel/vercel__proxy__cache_id.json | 4 + .../vercel/vercel__proxy__client_ip.json | 4 + .../vercel/vercel__proxy__host.json | 4 + .../vercel/vercel__proxy__lambda_region.json | 4 + .../vercel/vercel__proxy__method.json | 4 + .../vercel/vercel__proxy__path.json | 4 + .../vercel/vercel__proxy__path_type.json | 4 + .../vercel__proxy__path_type_variant.json | 4 + .../vercel/vercel__proxy__referer.json | 4 + .../vercel/vercel__proxy__region.json | 4 + .../vercel__proxy__response_byte_size.json | 4 + .../vercel/vercel__proxy__scheme.json | 4 + .../vercel/vercel__proxy__status_code.json | 4 + .../vercel/vercel__proxy__timestamp.json | 4 + .../vercel/vercel__proxy__user_agent.json | 4 + .../vercel/vercel__proxy__vercel_cache.json | 4 + .../vercel/vercel__proxy__vercel_id.json | 4 + .../vercel/vercel__proxy__waf_action.json | 4 + .../vercel/vercel__proxy__waf_rule_id.json | 4 + .../attributes/vercel/vercel__request_id.json | 4 + model/attributes/vercel/vercel__source.json | 4 + .../vercel/vercel__status_code.json | 4 + python/src/sentry_conventions/attributes.py | 491 +++++- shared/deprecated_attributes.json | 346 +++- 433 files changed, 3479 insertions(+), 511 deletions(-) delete mode 100644 model/attributes/sentry/sentry__log__sequence.json create mode 100644 model/attributes/sentry/sentry__timestamp__sequence.json diff --git a/javascript/sentry-conventions/src/attributes.ts b/javascript/sentry-conventions/src/attributes.ts index 2cf83c5d..f836564b 100644 --- a/javascript/sentry-conventions/src/attributes.ts +++ b/javascript/sentry-conventions/src/attributes.ts @@ -6942,26 +6942,6 @@ export const SENTRY_KIND = 'sentry.kind'; */ export type SENTRY_KIND_TYPE = string; -// Path: model/attributes/sentry/sentry__log__sequence.json - -/** - * A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. `sentry.log.sequence` - * - * Attribute Value Type: `number` {@link SENTRY_LOG_SEQUENCE_TYPE} - * - * Contains PII: false - * - * Attribute defined in OTEL: No - * - * @example 42 - */ -export const SENTRY_LOG_SEQUENCE = 'sentry.log.sequence'; - -/** - * Type for {@link SENTRY_LOG_SEQUENCE} sentry.log.sequence - */ -export type SENTRY_LOG_SEQUENCE_TYPE = number; - // Path: model/attributes/sentry/sentry__message__parameter__[key].json /** @@ -7491,6 +7471,26 @@ export const SENTRY_STATUS_MESSAGE = 'sentry.status.message'; */ export type SENTRY_STATUS_MESSAGE_TYPE = string; +// Path: model/attributes/sentry/sentry__timestamp__sequence.json + +/** + * A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one. `sentry.timestamp.sequence` + * + * Attribute Value Type: `number` {@link SENTRY_TIMESTAMP_SEQUENCE_TYPE} + * + * Contains PII: false + * + * Attribute defined in OTEL: No + * + * @example 0 + */ +export const SENTRY_TIMESTAMP_SEQUENCE = 'sentry.timestamp.sequence'; + +/** + * Type for {@link SENTRY_TIMESTAMP_SEQUENCE} sentry.timestamp.sequence + */ +export type SENTRY_TIMESTAMP_SEQUENCE_TYPE = number; + // Path: model/attributes/sentry/sentry__trace__parent_span_id.json /** @@ -9328,7 +9328,6 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_IDLE_SPAN_FINISH_REASON]: 'string', [SENTRY_IS_REMOTE]: 'boolean', [SENTRY_KIND]: 'string', - [SENTRY_LOG_SEQUENCE]: 'integer', [SENTRY_MESSAGE_PARAMETER_KEY]: 'string', [SENTRY_MESSAGE_TEMPLATE]: 'string', [SENTRY_MODULE_KEY]: 'string', @@ -9355,6 +9354,7 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_SPAN_SOURCE]: 'string', [SENTRY_STATUS_CODE]: 'integer', [SENTRY_STATUS_MESSAGE]: 'string', + [SENTRY_TIMESTAMP_SEQUENCE]: 'integer', [SENTRY_TRACE_PARENT_SPAN_ID]: 'string', [SENTRY_TRANSACTION]: 'string', [SERVER_ADDRESS]: 'string', @@ -9760,7 +9760,6 @@ export type AttributeName = | typeof SENTRY_IDLE_SPAN_FINISH_REASON | typeof SENTRY_IS_REMOTE | typeof SENTRY_KIND - | typeof SENTRY_LOG_SEQUENCE | typeof SENTRY_MESSAGE_PARAMETER_KEY | typeof SENTRY_MESSAGE_TEMPLATE | typeof SENTRY_MODULE_KEY @@ -9787,6 +9786,7 @@ export type AttributeName = | typeof SENTRY_SPAN_SOURCE | typeof SENTRY_STATUS_CODE | typeof SENTRY_STATUS_MESSAGE + | typeof SENTRY_TIMESTAMP_SEQUENCE | typeof SENTRY_TRACE_PARENT_SPAN_ID | typeof SENTRY_TRANSACTION | typeof SERVER_ADDRESS @@ -9870,7 +9870,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['Citation 1', 'Citation 2'], deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -9887,7 +9887,12 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_USAGE_OUTPUT_TOKENS, GEN_AI_USAGE_COMPLETION_TOKENS], sdks: ['python'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57, 61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [57, 61] }, + { version: '0.0.0' }, + ], }, [AI_DOCUMENTS]: { brief: 'Documents or content chunks used as context for the AI model.', @@ -9899,7 +9904,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['document1.txt', 'document2.pdf'], deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -9915,7 +9920,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.response.finish_reason', }, aliases: [GEN_AI_RESPONSE_FINISH_REASONS], - changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [55, 57, 61, 108, 127] }, + ], }, [AI_FREQUENCY_PENALTY]: { brief: @@ -9931,6 +9939,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_FREQUENCY_PENALTY], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -9948,7 +9957,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.tool.name', }, aliases: [GEN_AI_TOOL_NAME], - changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [55, 57, 61, 108] }, + ], }, [AI_GENERATION_ID]: { brief: 'Unique identifier for the completion.', @@ -9962,7 +9974,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.response.id', }, aliases: [GEN_AI_RESPONSE_ID], - changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [55, 57, 61, 108, 127] }, + ], }, [AI_INPUT_MESSAGES]: { brief: 'The input messages sent to the model', @@ -9977,7 +9992,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_MESSAGES], sdks: ['python'], - changelog: [{ version: '0.1.0', prs: [65, 119] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [65, 119] }, { version: '0.0.0' }], }, [AI_IS_SEARCH_REQUIRED]: { brief: 'Boolean indicating if the model needs to perform a search.', @@ -9989,7 +10004,7 @@ export const ATTRIBUTE_METADATA: Record = { example: false, deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10003,7 +10018,7 @@ export const ATTRIBUTE_METADATA: Record = { example: '{"user_id": 123, "session_id": "abc123"}', deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55, 127] }, ], }, @@ -10020,7 +10035,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_RESPONSE_MODEL], sdks: ['python'], - changelog: [{ version: '0.1.0', prs: [57, 61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [57, 61, 127] }, { version: '0.0.0' }], }, [AI_MODEL_PROVIDER]: { brief: 'The provider of the model.', @@ -10035,6 +10050,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_PROVIDER_NAME, GEN_AI_SYSTEM], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [253] }, { version: '0.1.0', prs: [57, 61, 108, 127] }, ], @@ -10051,7 +10067,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.pipeline.name', }, aliases: [GEN_AI_PIPELINE_NAME], - changelog: [{ version: '0.1.0', prs: [53, 76, 108, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [53, 76, 108, 127] }, + ], }, [AI_PREAMBLE]: { brief: @@ -10067,7 +10086,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_SYSTEM_INSTRUCTIONS], changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10085,6 +10104,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_PRESENCE_PENALTY], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10102,7 +10122,12 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_USAGE_PROMPT_TOKENS, GEN_AI_USAGE_INPUT_TOKENS], sdks: ['python'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57, 61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [57, 61] }, + { version: '0.0.0' }, + ], }, [AI_RAW_PROMPTING]: { brief: 'When enabled, the user’s prompt will be sent to the model without any pre-processing.', @@ -10114,7 +10139,7 @@ export const ATTRIBUTE_METADATA: Record = { example: true, deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10130,7 +10155,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.response.text', }, sdks: ['python'], - changelog: [{ version: '0.1.0', prs: [65, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [65, 127] }, { version: '0.0.0' }], }, [AI_RESPONSE_FORMAT]: { brief: 'For an AI model call, the format of the response', @@ -10142,7 +10167,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'json_object', deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55, 127] }, ], }, @@ -10156,7 +10181,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['climate change effects', 'renewable energy'], deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10170,7 +10195,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['search_result_1, search_result_2'], deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10186,7 +10211,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.request.seed', }, aliases: [GEN_AI_REQUEST_SEED], - changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [55, 57, 61, 108, 127] }, + ], }, [AI_STREAMING]: { brief: 'Whether the request was streamed back.', @@ -10201,7 +10229,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_RESPONSE_STREAMING], sdks: ['python'], - changelog: [{ version: '0.1.0', prs: [76, 108] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [76, 108] }, { version: '0.0.0' }], }, [AI_TAGS]: { brief: 'Tags that describe an AI pipeline step.', @@ -10213,7 +10241,7 @@ export const ATTRIBUTE_METADATA: Record = { example: '{"executed_function": "add_integers"}', deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55, 127] }, ], }, @@ -10231,6 +10259,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_TEMPERATURE], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10248,7 +10277,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_INPUT_MESSAGES], changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10263,7 +10292,10 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'gen_ai.request.available_tools', }, - changelog: [{ version: '0.1.0', prs: [55, 65, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [55, 65, 127] }, + ], }, [AI_TOOL_CALLS]: { brief: 'For an AI model call, the tool calls that were made.', @@ -10276,7 +10308,10 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'gen_ai.response.tool_calls', }, - changelog: [{ version: '0.1.0', prs: [55, 65] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [55, 65] }, + ], }, [AI_TOP_K]: { brief: @@ -10292,6 +10327,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_TOP_K], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10310,6 +10346,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_TOP_P], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10327,7 +10364,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_COST_TOTAL_TOKENS], changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [53] }, ], @@ -10345,7 +10382,12 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_USAGE_TOTAL_TOKENS], sdks: ['python'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57, 61, 108] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [57, 61, 108] }, + { version: '0.0.0' }, + ], }, [AI_WARNINGS]: { brief: 'Warning messages generated during model execution.', @@ -10357,7 +10399,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['Token limit exceeded'], deprecation: {}, changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10369,7 +10411,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'cold', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [BLOCKED_MAIN_THREAD]: { brief: 'Whether the main thread was blocked by the span.', @@ -10379,7 +10421,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [BROWSER_NAME]: { brief: 'The name of the browser.', @@ -10390,7 +10432,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'Chrome', aliases: [SENTRY_BROWSER_NAME], - changelog: [{ version: '0.1.0', prs: [127, 139] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127, 139] }, { version: '0.0.0' }], }, [BROWSER_REPORT_TYPE]: { brief: 'A browser report sent via reporting API..', @@ -10400,7 +10442,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'network-error', - changelog: [{ version: '0.1.0', prs: [68, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [68, 127] }, + ], }, [BROWSER_SCRIPT_INVOKER]: { brief: 'How a script was called in the browser.', @@ -10411,7 +10456,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'Window.requestAnimationFrame', sdks: ['browser'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [BROWSER_SCRIPT_INVOKER_TYPE]: { brief: 'Browser script entry point type.', @@ -10422,7 +10467,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'event-listener', sdks: ['browser'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [BROWSER_SCRIPT_SOURCE_CHAR_POSITION]: { brief: 'A number representing the script character position of the script.', @@ -10433,7 +10478,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 678, sdks: ['browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [BROWSER_VERSION]: { brief: 'The version of the browser.', @@ -10444,7 +10489,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '120.0.6099.130', aliases: [SENTRY_BROWSER_VERSION], - changelog: [{ version: '0.1.0', prs: [59, 127, 139] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [59, 127, 139] }, + ], }, [CACHE_HIT]: { brief: 'If the cache was hit during this span.', @@ -10455,7 +10503,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: true, sdks: ['php-laravel'], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [CACHE_ITEM_SIZE]: { brief: 'The size of the requested item in the cache. In bytes.', @@ -10465,7 +10513,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 58, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CACHE_KEY]: { brief: 'The key of the cache accessed.', @@ -10476,7 +10524,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: ['my-cache-key', 'my-other-cache-key'], sdks: ['php-laravel'], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [CACHE_OPERATION]: { brief: 'The operation being performed on the cache.', @@ -10487,7 +10535,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'get', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [CACHE_TTL]: { brief: 'The ttl of the cache in seconds', @@ -10498,7 +10546,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 120, sdks: ['php-laravel'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CHANNEL]: { brief: 'The channel name that is being used.', @@ -10509,7 +10557,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'mail', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [CLIENT_ADDRESS]: { brief: @@ -10521,7 +10569,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'example.com', aliases: [HTTP_CLIENT_IP], - changelog: [{ version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], }, [CLIENT_PORT]: { brief: 'Client port number.', @@ -10531,7 +10579,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 5432, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CLOUDFLARE_D1_DURATION]: { brief: 'The duration of a Cloudflare D1 operation.', @@ -10542,7 +10590,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 543, sdks: ['javascript-cloudflare'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CLOUDFLARE_D1_ROWS_READ]: { brief: 'The number of rows read in a Cloudflare D1 operation.', @@ -10553,7 +10601,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 12, sdks: ['javascript-cloudflare'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CLOUDFLARE_D1_ROWS_WRITTEN]: { brief: 'The number of rows written in a Cloudflare D1 operation.', @@ -10564,7 +10612,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 12, sdks: ['javascript-cloudflare'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CODE_FILEPATH]: { brief: @@ -10579,7 +10627,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.file.path', }, aliases: [CODE_FILE_PATH], - changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [CODE_FILE_PATH]: { brief: @@ -10591,7 +10639,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '/app/myapplication/http/handler/server.py', aliases: [CODE_FILEPATH], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [CODE_FUNCTION]: { brief: "The method or function name, or equivalent (usually rightmost part of the code unit's name).", @@ -10605,7 +10653,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.function.name', }, aliases: [CODE_FUNCTION_NAME], - changelog: [{ version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], }, [CODE_FUNCTION_NAME]: { brief: "The method or function name, or equivalent (usually rightmost part of the code unit's name).", @@ -10616,7 +10664,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'server_request', aliases: [CODE_FUNCTION], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [CODE_LINENO]: { brief: @@ -10631,7 +10679,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.line.number', }, aliases: [CODE_LINE_NUMBER], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61, 108] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61, 108] }, + { version: '0.0.0' }, + ], }, [CODE_LINE_NUMBER]: { brief: @@ -10643,7 +10696,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 42, aliases: [CODE_LINENO], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CODE_NAMESPACE]: { brief: @@ -10658,7 +10711,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.function.name', reason: 'code.function.name should include the namespace.', }, - changelog: [{ version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], }, [CULTURE_CALENDAR]: { brief: 'The calendar system used by the culture.', @@ -10668,7 +10721,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'GregorianCalendar', - changelog: [{ version: '0.4.0', prs: [243] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [243] }, + ], }, [CULTURE_DISPLAY_NAME]: { brief: 'Human readable name of the culture.', @@ -10678,7 +10734,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'English (United States)', - changelog: [{ version: '0.4.0', prs: [243] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [243] }, + ], }, [CULTURE_IS_24_HOUR_FORMAT]: { brief: 'Whether the culture uses 24-hour time format.', @@ -10688,7 +10747,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.4.0', prs: [243] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [243] }, + ], }, [CULTURE_LOCALE]: { brief: 'The locale identifier following RFC 4646.', @@ -10698,7 +10760,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'en-US', - changelog: [{ version: '0.4.0', prs: [243] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [243] }, + ], }, [CULTURE_TIMEZONE]: { brief: 'The timezone of the culture, as a geographic timezone identifier.', @@ -10708,7 +10773,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Europe/Vienna', - changelog: [{ version: '0.4.0', prs: [243] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [243] }, + ], }, [DB_COLLECTION_NAME]: { brief: 'The name of a collection (table, container) within the database.', @@ -10718,7 +10786,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'users', - changelog: [{ version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], }, [DB_NAME]: { brief: 'The name of the database being accessed.', @@ -10732,7 +10800,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.namespace', }, aliases: [DB_NAMESPACE], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [DB_NAMESPACE]: { brief: 'The name of the database being accessed.', @@ -10743,7 +10811,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'customers', aliases: [DB_NAME], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_OPERATION]: { brief: 'The name of the operation being executed.', @@ -10757,7 +10825,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.operation.name', }, aliases: [DB_OPERATION_NAME], - changelog: [{ version: '0.4.0', prs: [199] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [199] }, + { version: '0.1.0', prs: [61, 127] }, + { version: '0.0.0' }, + ], }, [DB_OPERATION_NAME]: { brief: 'The name of the operation being executed.', @@ -10768,7 +10841,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'SELECT', aliases: [DB_OPERATION], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_QUERY_PARAMETER_KEY]: { brief: @@ -10780,7 +10853,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, hasDynamicSuffix: true, example: "db.query.parameter.foo='123'", - changelog: [{ version: '0.1.0', prs: [103, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103, 127] }, + ], }, [DB_QUERY_SUMMARY]: { brief: @@ -10791,7 +10867,12 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'SELECT users;', - changelog: [{ version: '0.4.0', prs: [208] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [208] }, + { version: '0.1.0', prs: [127] }, + { version: '0.0.0' }, + ], }, [DB_QUERY_TEXT]: { brief: @@ -10803,7 +10884,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'SELECT * FROM users WHERE id = $1', aliases: [DB_STATEMENT], - changelog: [{ version: '0.4.0', prs: [208] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [208] }, + { version: '0.1.0', prs: [127] }, + { version: '0.0.0' }, + ], }, [DB_REDIS_CONNECTION]: { brief: 'The redis connection name.', @@ -10814,7 +10900,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'my-redis-instance', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_REDIS_PARAMETERS]: { brief: 'The array of command parameters given to a redis command.', @@ -10825,7 +10911,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: ['test', '*'], sdks: ['php-laravel'], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [DB_SQL_BINDINGS]: { brief: 'The array of query bindings.', @@ -10841,7 +10927,7 @@ export const ATTRIBUTE_METADATA: Record = { 'Instead of adding every binding in the db.sql.bindings attribute, add them as individual entires with db.query.parameter..', }, sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [DB_STATEMENT]: { brief: 'The database statement being executed.', @@ -10855,7 +10941,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.query.text', }, aliases: [DB_QUERY_TEXT], - changelog: [{ version: '0.4.0', prs: [199] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [199] }, + { version: '0.1.0', prs: [61, 127] }, + { version: '0.0.0' }, + ], }, [DB_SYSTEM]: { brief: @@ -10870,7 +10961,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.system.name', }, aliases: [DB_SYSTEM_NAME], - changelog: [{ version: '0.4.0', prs: [199, 224] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [199, 224] }, + { version: '0.1.0', prs: [61, 127] }, + { version: '0.0.0' }, + ], }, [DB_SYSTEM_NAME]: { brief: @@ -10882,7 +10978,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'postgresql', aliases: [DB_SYSTEM], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_USER]: { brief: 'The database user.', @@ -10892,7 +10988,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'fancy_user', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [DEVICE_BRAND]: { brief: 'The brand of the device.', @@ -10902,7 +10998,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Apple', - changelog: [{ version: '0.1.0', prs: [116, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [116, 127] }, + ], }, [DEVICE_FAMILY]: { brief: 'The family of the device.', @@ -10912,7 +11011,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'iPhone', - changelog: [{ version: '0.1.0', prs: [116, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [116, 127] }, + ], }, [DEVICE_MODEL]: { brief: 'The model of the device.', @@ -10922,7 +11024,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'iPhone 15 Pro Max', - changelog: [{ version: '0.1.0', prs: [116, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [116, 127] }, + ], }, [ENVIRONMENT]: { brief: 'The sentry environment.', @@ -10936,7 +11041,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.environment', }, aliases: [SENTRY_ENVIRONMENT], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [ERROR_TYPE]: { brief: 'Describes a class of error the operation ended with.', @@ -10946,7 +11051,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'timeout', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [EVENT_ID]: { brief: 'The unique identifier for this event (log record)', @@ -10956,7 +11061,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1234567890, - changelog: [{ version: '0.1.0', prs: [101] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [101] }, + ], }, [EVENT_NAME]: { brief: 'The name that uniquely identifies this event (log record)', @@ -10966,7 +11074,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Process Payload', - changelog: [{ version: '0.1.0', prs: [101, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [101, 127] }, + ], }, [EXCEPTION_ESCAPED]: { brief: @@ -10977,7 +11088,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [EXCEPTION_MESSAGE]: { brief: 'The error message.', @@ -10987,7 +11098,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'ENOENT: no such file or directory', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [EXCEPTION_STACKTRACE]: { brief: @@ -10999,7 +11110,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'Exception in thread "main" java.lang.RuntimeException: Test exception\n at com.example.GenerateTrace.methodB(GenerateTrace.java:13)\n at com.example.GenerateTrace.methodA(GenerateTrace.java:9)\n at com.example.GenerateTrace.main(GenerateTrace.java:5)', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [EXCEPTION_TYPE]: { brief: @@ -11010,7 +11121,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'OSError', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FAAS_COLDSTART]: { brief: 'A boolean that is true if the serverless function is executed for the first time (aka cold-start).', @@ -11020,7 +11131,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [FAAS_CRON]: { brief: 'A string containing the schedule period as Cron Expression.', @@ -11030,7 +11141,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '0/5 * * * ? *', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FAAS_TIME]: { brief: 'A string containing the function invocation time in the ISO 8601 format expressed in UTC.', @@ -11040,7 +11151,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '2020-01-23T13:47:06Z', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FAAS_TRIGGER]: { brief: 'Type of the trigger which caused this function invocation.', @@ -11050,7 +11161,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'timer', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FLAG_EVALUATION_KEY]: { brief: @@ -11062,7 +11173,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, hasDynamicSuffix: true, example: 'flag.evaluation.is_new_ui=true', - changelog: [{ version: '0.1.0', prs: [103] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103] }, + ], }, [FRAMES_DELAY]: { brief: @@ -11073,7 +11187,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 5, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FRAMES_FROZEN]: { brief: 'The number of frozen frames rendered during the lifetime of the span.', @@ -11083,7 +11197,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 3, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FRAMES_SLOW]: { brief: 'The number of slow frames rendered during the lifetime of the span.', @@ -11093,7 +11207,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FRAMES_TOTAL]: { brief: 'The number of total frames rendered during the lifetime of the span.', @@ -11103,7 +11217,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 60, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FS_ERROR]: { brief: 'The error message of a file system error.', @@ -11118,7 +11232,7 @@ export const ATTRIBUTE_METADATA: Record = { reason: 'This attribute is not part of the OpenTelemetry specification and error.type fits much better.', }, sdks: ['javascript-node'], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [GEN_AI_AGENT_NAME]: { brief: 'The name of the agent being used.', @@ -11128,7 +11242,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'ResearchAssistant', - changelog: [{ version: '0.1.0', prs: [62, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [62, 127] }, + ], }, [GEN_AI_CONVERSATION_ID]: { brief: @@ -11139,7 +11256,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'conv_5j66UpCpwteGg4YSxUnt7lPY', - changelog: [{ version: '0.4.0', prs: [250] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [250] }, + ], }, [GEN_AI_COST_INPUT_TOKENS]: { brief: 'The cost of tokens used to process the AI input (prompt) in USD (without cached input tokens).', @@ -11150,6 +11270,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 123.45, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, ], @@ -11163,6 +11284,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 123.45, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, ], @@ -11177,7 +11299,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 12.34, aliases: [AI_TOTAL_COST], changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [126] }, ], @@ -11190,7 +11312,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: "What's the weather in Paris?", - changelog: [{ version: '0.3.1', prs: [195] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [195] }, + ], }, [GEN_AI_INPUT_MESSAGES]: { brief: @@ -11204,7 +11329,7 @@ export const ATTRIBUTE_METADATA: Record = { '[{"role": "user", "parts": [{"type": "text", "content": "Weather in Paris?"}]}, {"role": "assistant", "parts": [{"type": "tool_call", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "name": "get_weather", "arguments": {"location": "Paris"}}]}, {"role": "tool", "parts": [{"type": "tool_call_response", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "result": "rainy, 57°F"}]}]', aliases: [AI_TEXTS], changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11218,6 +11343,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'chat', changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [225] }, { version: '0.1.0', prs: [62, 127] }, ], @@ -11232,6 +11358,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'tool', changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [257] }, { version: '0.1.0', prs: [113, 127] }, ], @@ -11246,7 +11373,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '[{"role": "assistant", "parts": [{"type": "text", "content": "The weather in Paris is currently rainy with a temperature of 57°F."}], "finish_reason": "stop"}]', - changelog: [{ version: '0.4.0', prs: [221] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [221] }, + ], }, [GEN_AI_PIPELINE_NAME]: { brief: 'Name of the AI pipeline or chain being executed.', @@ -11257,7 +11387,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'Autofix Pipeline', aliases: [AI_PIPELINE_NAME], - changelog: [{ version: '0.1.0', prs: [76, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [76, 127] }, + ], }, [GEN_AI_PROMPT]: { brief: 'The input messages sent to the model', @@ -11270,7 +11403,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { reason: 'Deprecated from OTEL, use gen_ai.input.messages with the new format instead.', }, - changelog: [{ version: '0.1.0', prs: [74, 108, 119] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [74, 108, 119] }, { version: '0.0.0' }], }, [GEN_AI_PROVIDER_NAME]: { brief: 'The Generative AI provider as identified by the client or server instrumentation.', @@ -11281,7 +11414,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'openai', aliases: [AI_MODEL_PROVIDER, GEN_AI_SYSTEM], - changelog: [{ version: '0.4.0', prs: [253] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [253] }, + ], }, [GEN_AI_REQUEST_AVAILABLE_TOOLS]: { brief: 'The available tools for the model. It has to be a stringified version of an array of objects.', @@ -11296,6 +11432,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.tool.definitions', }, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 127] }, ], @@ -11311,6 +11448,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.5, aliases: [AI_FREQUENCY_PENALTY], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11324,6 +11462,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 2048, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [62] }, ], @@ -11343,6 +11482,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [AI_INPUT_MESSAGES], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 74, 108, 119, 122] }, ], @@ -11355,7 +11495,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'gpt-4-turbo-preview', - changelog: [{ version: '0.1.0', prs: [62, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [62, 127] }, + ], }, [GEN_AI_REQUEST_PRESENCE_PENALTY]: { brief: @@ -11368,6 +11511,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.5, aliases: [AI_PRESENCE_PENALTY], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11381,7 +11525,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '1234567890', aliases: [AI_SEED], - changelog: [{ version: '0.1.0', prs: [57, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [57, 127] }, + ], }, [GEN_AI_REQUEST_TEMPERATURE]: { brief: @@ -11394,6 +11541,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.1, aliases: [AI_TEMPERATURE], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11409,6 +11557,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 35, aliases: [AI_TOP_K], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11424,6 +11573,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.7, aliases: [AI_TOP_P], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11437,7 +11587,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'COMPLETE', aliases: [AI_FINISH_REASON], - changelog: [{ version: '0.1.0', prs: [57, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [57, 127] }, + ], }, [GEN_AI_RESPONSE_ID]: { brief: 'Unique identifier for the completion.', @@ -11448,7 +11601,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'gen_123abc', aliases: [AI_GENERATION_ID], - changelog: [{ version: '0.1.0', prs: [57, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [57, 127] }, + ], }, [GEN_AI_RESPONSE_MODEL]: { brief: 'The vendor-specific ID of the model used.', @@ -11459,7 +11615,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'gpt-4', aliases: [AI_MODEL_ID], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [GEN_AI_RESPONSE_STREAMING]: { brief: "Whether or not the AI model call's response was streamed back asynchronously", @@ -11470,7 +11626,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: true, aliases: [AI_STREAMING], - changelog: [{ version: '0.1.0', prs: [76] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [76] }, + ], }, [GEN_AI_RESPONSE_TEXT]: { brief: @@ -11486,6 +11645,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.output.messages', }, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 74] }, ], @@ -11498,7 +11658,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0.6853435, - changelog: [{ version: '0.4.0', prs: [227] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [227] }, + ], }, [GEN_AI_RESPONSE_TOKENS_PER_SECOND]: { brief: 'The total output tokens per seconds throughput', @@ -11509,6 +11672,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 12345.67, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [66] }, ], @@ -11525,6 +11689,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.output.messages', }, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 74] }, ], @@ -11542,6 +11707,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [AI_MODEL_PROVIDER, GEN_AI_PROVIDER_NAME], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [253] }, { version: '0.1.0', prs: [57, 127] }, ], @@ -11556,7 +11722,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'You are a helpful assistant', aliases: [AI_PREAMBLE], changelog: [ - { version: 'next', prs: [264] }, + { version: 'next', prs: [264, 270] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11572,6 +11738,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.system_instructions', }, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [62] }, ], @@ -11586,7 +11753,7 @@ export const ATTRIBUTE_METADATA: Record = { example: '{"location": "Paris"}', aliases: [GEN_AI_TOOL_INPUT], changelog: [ - { version: 'next', prs: [265] }, + { version: 'next', prs: [265, 270] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11600,7 +11767,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'rainy, 57°F', aliases: [GEN_AI_TOOL_OUTPUT, GEN_AI_TOOL_MESSAGE], changelog: [ - { version: 'next', prs: [265] }, + { version: 'next', prs: [265, 270] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11613,7 +11780,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '[{"type": "function", "name": "get_current_weather", "description": "Get the current weather in a given location", "parameters": {"type": "object", "properties": {"location": {"type": "string", "description": "The city and state, e.g. San Francisco, CA"}, "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}}, "required": ["location", "unit"]}}]', - changelog: [{ version: '0.4.0', prs: [221] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [221] }, + ], }, [GEN_AI_TOOL_DESCRIPTION]: { brief: 'The description of the tool being used.', @@ -11623,7 +11793,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Searches the web for current information about a topic', - changelog: [{ version: '0.1.0', prs: [62, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [62, 127] }, + ], }, [GEN_AI_TOOL_INPUT]: { brief: 'The input of the tool being used. It has to be a stringified version of the input to the tool.', @@ -11638,7 +11811,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_TOOL_CALL_ARGUMENTS], changelog: [ - { version: 'next', prs: [265] }, + { version: 'next', prs: [265, 270] }, { version: '0.1.0', prs: [63, 74] }, ], }, @@ -11655,7 +11828,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_TOOL_CALL_RESULT, GEN_AI_TOOL_OUTPUT], changelog: [ - { version: 'next', prs: [265] }, + { version: 'next', prs: [265, 270] }, { version: '0.1.0', prs: [62] }, ], }, @@ -11668,7 +11841,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'Flights', aliases: [AI_FUNCTION_CALL], - changelog: [{ version: '0.1.0', prs: [57, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [57, 127] }, + ], }, [GEN_AI_TOOL_OUTPUT]: { brief: 'The output of the tool being used. It has to be a stringified version of the output of the tool.', @@ -11683,7 +11859,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_TOOL_CALL_RESULT, GEN_AI_TOOL_MESSAGE], changelog: [ - { version: 'next', prs: [265] }, + { version: 'next', prs: [265, 270] }, { version: '0.1.0', prs: [63, 74] }, ], }, @@ -11695,7 +11871,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'function', - changelog: [{ version: '0.1.0', prs: [62, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [62, 127] }, + ], }, [GEN_AI_USAGE_COMPLETION_TOKENS]: { brief: 'The number of tokens used in the GenAI response (completion).', @@ -11709,7 +11888,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.usage.output_tokens', }, aliases: [AI_COMPLETION_TOKENS_USED, GEN_AI_USAGE_OUTPUT_TOKENS], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [GEN_AI_USAGE_INPUT_TOKENS]: { brief: 'The number of tokens used to process the AI input (prompt) including cached input tokens.', @@ -11721,7 +11905,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 10, aliases: [AI_PROMPT_TOKENS_USED, GEN_AI_USAGE_PROMPT_TOKENS], changelog: [ - { version: 'next', prs: [261] }, + { version: 'next', prs: [261, 270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, { version: '0.0.0' }, @@ -11736,6 +11920,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [62, 112] }, ], @@ -11748,7 +11933,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 100, - changelog: [{ version: '0.4.0', prs: [217, 228] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [217, 228] }, + ], }, [GEN_AI_USAGE_OUTPUT_TOKENS]: { brief: 'The number of tokens used for creating the AI output (including reasoning tokens).', @@ -11760,7 +11948,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 10, aliases: [AI_COMPLETION_TOKENS_USED, GEN_AI_USAGE_COMPLETION_TOKENS], changelog: [ - { version: 'next', prs: [261] }, + { version: 'next', prs: [261, 270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, { version: '0.0.0' }, @@ -11775,6 +11963,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 75, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [62, 112] }, ], @@ -11791,7 +11980,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.usage.input_tokens', }, aliases: [AI_PROMPT_TOKENS_USED, GEN_AI_USAGE_INPUT_TOKENS], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [GEN_AI_USAGE_TOTAL_TOKENS]: { brief: 'The total number of tokens used to process the prompt. (input tokens plus output todkens)', @@ -11803,6 +11997,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 20, aliases: [AI_TOTAL_TOKENS_USED], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11815,7 +12010,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'findBookById', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [GRAPHQL_OPERATION_TYPE]: { brief: 'The type of the operation being executed.', @@ -11825,7 +12020,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'query', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_CLIENT_IP]: { brief: @@ -11840,7 +12035,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'client.address', }, aliases: [CLIENT_ADDRESS], - changelog: [{ version: '0.1.0', prs: [61, 106, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 106, 127] }, { version: '0.0.0' }], }, [HTTP_DECODED_RESPONSE_CONTENT_LENGTH]: { brief: 'The decoded body size of the response (in bytes).', @@ -11851,7 +12046,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 456, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_FLAVOR]: { brief: 'The actual version of the protocol used for network communication.', @@ -11865,7 +12060,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.protocol.version', }, aliases: [NETWORK_PROTOCOL_VERSION, NET_PROTOCOL_VERSION], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [HTTP_FRAGMENT]: { brief: @@ -11876,7 +12071,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '#details', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [HTTP_HOST]: { brief: 'The domain name.', @@ -11891,7 +12086,7 @@ export const ATTRIBUTE_METADATA: Record = { reason: 'Deprecated, use one of `server.address` or `client.address`, depending on the usage', }, aliases: [SERVER_ADDRESS, CLIENT_ADDRESS, HTTP_SERVER_NAME, NET_HOST_NAME], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [HTTP_METHOD]: { brief: 'The HTTP method used.', @@ -11905,7 +12100,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.request.method', }, aliases: [HTTP_REQUEST_METHOD], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [HTTP_QUERY]: { brief: @@ -11918,7 +12113,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '?foo=bar&bar=baz', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [HTTP_REQUEST_CONNECTION_END]: { brief: @@ -11930,7 +12125,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.15, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_CONNECT_START]: { brief: @@ -11942,7 +12142,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.111, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_DOMAIN_LOOKUP_END]: { brief: @@ -11954,7 +12159,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.201, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_DOMAIN_LOOKUP_START]: { brief: @@ -11966,7 +12176,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.322, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_FETCH_START]: { brief: 'The UNIX timestamp representing the time immediately before the browser starts to fetch the resource.', @@ -11977,7 +12192,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.389, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_HEADER_KEY]: { brief: @@ -11990,6 +12210,7 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "http.request.header.custom-header=['foo', 'bar']", changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [201, 204] }, { version: '0.1.0', prs: [103] }, ], @@ -12003,7 +12224,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'GET', aliases: [METHOD, HTTP_METHOD], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_REQUEST_REDIRECT_END]: { brief: @@ -12016,6 +12237,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 1732829558.502, sdks: ['javascript-browser'], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [130, 134] }, ], @@ -12029,7 +12251,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.495, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_REQUEST_START]: { brief: @@ -12041,7 +12268,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.51, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_RESEND_COUNT]: { brief: 'The ordinal number of request resending attempt (for any reason, including redirects).', @@ -12051,7 +12283,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 2, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_REQUEST_RESPONSE_END]: { brief: @@ -12063,7 +12295,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.89, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_RESPONSE_START]: { brief: @@ -12075,7 +12312,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.7, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_SECURE_CONNECTION_START]: { brief: @@ -12087,7 +12329,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.73, sdks: ['javascript-browser'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [134] }, + { version: '0.0.0' }, + ], }, [HTTP_REQUEST_TIME_TO_FIRST_BYTE]: { brief: @@ -12100,6 +12347,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 1.032, sdks: ['javascript-browser'], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [131] }, ], @@ -12115,6 +12363,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 1732829553.68, sdks: ['javascript-browser'], changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [130, 134] }, ], @@ -12128,7 +12377,12 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 123, aliases: [HTTP_RESPONSE_CONTENT_LENGTH, HTTP_RESPONSE_HEADER_CONTENT_LENGTH], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [106] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [106] }, + { version: '0.0.0' }, + ], }, [HTTP_RESPONSE_CONTENT_LENGTH]: { brief: 'The encoded body size of the response (in bytes).', @@ -12142,7 +12396,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.response.body.size', }, aliases: [HTTP_RESPONSE_BODY_SIZE, HTTP_RESPONSE_HEADER_CONTENT_LENGTH], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61, 106] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61, 106] }, + { version: '0.0.0' }, + ], }, [HTTP_RESPONSE_HEADER_CONTENT_LENGTH]: { brief: 'The size of the message body sent to the recipient (in bytes)', @@ -12153,7 +12412,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: "http.response.header.custom-header=['foo', 'bar']", aliases: [HTTP_RESPONSE_CONTENT_LENGTH, HTTP_RESPONSE_BODY_SIZE], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_HEADER_KEY]: { brief: @@ -12166,6 +12425,7 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "http.response.header.custom-header=['foo', 'bar']", changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [201, 204] }, { version: '0.1.0', prs: [103] }, ], @@ -12179,7 +12439,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 456, aliases: [HTTP_RESPONSE_TRANSFER_SIZE], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_STATUS_CODE]: { brief: 'The status code of the HTTP response.', @@ -12190,7 +12450,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 404, aliases: [HTTP_STATUS_CODE], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_TRANSFER_SIZE]: { brief: 'The transfer size of the response (in bytes).', @@ -12204,7 +12464,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.response.size', }, aliases: [HTTP_RESPONSE_SIZE], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [HTTP_ROUTE]: { brief: 'The matched route, that is, the path template in the format used by the respective server framework.', @@ -12215,7 +12480,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '/users/:id', aliases: [URL_TEMPLATE], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_SCHEME]: { brief: 'The URI scheme component identifying the used protocol.', @@ -12229,7 +12494,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.scheme', }, aliases: [URL_SCHEME], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [HTTP_SERVER_NAME]: { brief: 'The server domain name', @@ -12243,7 +12508,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.address', }, aliases: [SERVER_ADDRESS, NET_HOST_NAME, HTTP_HOST], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [HTTP_SERVER_REQUEST_TIME_IN_QUEUE]: { brief: @@ -12255,7 +12520,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, sdks: ['ruby'], - changelog: [{ version: 'next', prs: [267] }], + changelog: [{ version: 'next', prs: [267, 270] }], }, [HTTP_STATUS_CODE]: { brief: 'The status code of the HTTP response.', @@ -12269,7 +12534,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.response.status_code', }, aliases: [HTTP_RESPONSE_STATUS_CODE], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [HTTP_TARGET]: { brief: 'The pathname and query string of the URL.', @@ -12283,7 +12553,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.path', reason: 'This attribute is being deprecated in favor of url.path and url.query', }, - changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [HTTP_URL]: { brief: 'The URL of the resource that was fetched.', @@ -12297,7 +12567,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.full', }, aliases: [URL_FULL, URL], - changelog: [{ version: '0.1.0', prs: [61, 108] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108] }, { version: '0.0.0' }], }, [HTTP_USER_AGENT]: { brief: 'Value of the HTTP User-Agent header sent by the client.', @@ -12312,7 +12582,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'user_agent.original', }, aliases: [USER_AGENT_ORIGINAL], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [ID]: { brief: 'A unique identifier for the span.', @@ -12323,7 +12593,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'f47ac10b58cc4372a5670e02b2c3d479', sdks: ['php-laravel'], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [JVM_GC_ACTION]: { brief: 'Name of the garbage collector action.', @@ -12333,7 +12603,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'end of minor GC', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_GC_NAME]: { brief: 'Name of the garbage collector.', @@ -12343,7 +12613,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'G1 Young Generation', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_MEMORY_POOL_NAME]: { brief: 'Name of the memory pool.', @@ -12353,7 +12623,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'G1 Old Gen', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_MEMORY_TYPE]: { brief: 'Name of the memory pool.', @@ -12363,7 +12633,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'G1 Old Gen', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_THREAD_DAEMON]: { brief: 'Whether the thread is daemon or not.', @@ -12373,7 +12643,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [JVM_THREAD_STATE]: { brief: 'State of the thread.', @@ -12383,7 +12653,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'blocked', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LCP_ELEMENT]: { brief: 'The dom element responsible for the largest contentful paint.', @@ -12393,7 +12663,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'img', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LCP_ID]: { brief: 'The id of the dom element responsible for the largest contentful paint.', @@ -12403,7 +12673,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '#hero', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LCP_SIZE]: { brief: 'The size of the largest contentful paint element.', @@ -12413,7 +12683,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1234, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [LCP_URL]: { brief: 'The url of the dom element responsible for the largest contentful paint.', @@ -12423,7 +12693,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https://example.com', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LOGGER_NAME]: { brief: 'The name of the logger that generated this event.', @@ -12433,7 +12703,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'myLogger', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MCP_CANCELLED_REASON]: { brief: 'Reason for the cancellation of an MCP operation.', @@ -12444,7 +12714,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'User cancelled the request', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_CANCELLED_REQUEST_ID]: { brief: 'Request ID of the cancelled MCP operation.', @@ -12454,7 +12727,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '123', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_CLIENT_NAME]: { brief: 'Name of the MCP client application.', @@ -12464,7 +12740,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'claude-desktop', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_CLIENT_TITLE]: { brief: 'Display title of the MCP client application.', @@ -12475,7 +12754,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Claude Desktop', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_CLIENT_VERSION]: { brief: 'Version of the MCP client application.', @@ -12485,7 +12767,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1.0.0', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_LIFECYCLE_PHASE]: { brief: 'Lifecycle phase indicator for MCP operations.', @@ -12495,7 +12780,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'initialization_complete', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_LOGGING_DATA_TYPE]: { brief: 'Data type of the logged message content.', @@ -12505,7 +12793,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'string', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_LOGGING_LEVEL]: { brief: 'Log level for MCP logging operations.', @@ -12515,7 +12806,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'info', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_LOGGING_LOGGER]: { brief: 'Logger name for MCP logging operations.', @@ -12526,7 +12820,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'mcp_server', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_LOGGING_MESSAGE]: { brief: 'Log message content from MCP logging operations.', @@ -12537,7 +12834,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Tool execution completed successfully', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_METHOD_NAME]: { brief: 'The name of the MCP request or notification method being called.', @@ -12547,7 +12847,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'tools/call', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROGRESS_CURRENT]: { brief: 'Current progress value of an MCP operation.', @@ -12558,6 +12861,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12571,7 +12875,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Processing 50 of 100 items', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROGRESS_PERCENTAGE]: { brief: 'Calculated progress percentage of an MCP operation. Computed from current/total * 100.', @@ -12582,6 +12889,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12594,7 +12902,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'progress-token-123', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROGRESS_TOTAL]: { brief: 'Total progress target value of an MCP operation.', @@ -12605,6 +12916,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 100, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12618,7 +12930,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'summarize', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROMPT_RESULT_DESCRIPTION]: { brief: 'Description of the prompt result.', @@ -12628,7 +12943,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'A summary of the requested information', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROMPT_RESULT_MESSAGE_CONTENT]: { brief: 'Content of the message in the prompt result. Used for single message results only.', @@ -12638,7 +12956,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Please provide a summary of the document', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROMPT_RESULT_MESSAGE_COUNT]: { brief: 'Number of messages in the prompt result.', @@ -12649,6 +12970,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 3, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12661,7 +12983,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'user', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_PROTOCOL_READY]: { brief: 'Protocol readiness indicator for MCP session. Non-zero value indicates the protocol is ready.', @@ -12672,6 +12997,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12684,7 +13010,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '2024-11-05', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_REQUEST_ARGUMENT_KEY]: { brief: @@ -12697,7 +13026,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, hasDynamicSuffix: true, example: "mcp.request.argument.query='weather in Paris'", - changelog: [{ version: '0.3.0', prs: [176] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [176] }, + ], }, [MCP_REQUEST_ARGUMENT_NAME]: { brief: 'Name argument from prompts/get MCP request.', @@ -12708,7 +13040,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'summarize', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_REQUEST_ARGUMENT_URI]: { brief: 'URI argument from resources/read MCP request.', @@ -12719,7 +13054,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'file:///path/to/resource', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_REQUEST_ID]: { brief: 'JSON-RPC request identifier for the MCP request. Unique within the MCP session.', @@ -12729,7 +13067,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_RESOURCE_PROTOCOL]: { brief: 'Protocol of the resource URI being accessed, extracted from the URI.', @@ -12739,7 +13080,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'file', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_RESOURCE_URI]: { brief: 'The resource URI being accessed in an MCP operation.', @@ -12750,7 +13094,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'file:///path/to/file.txt', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_SERVER_NAME]: { brief: 'Name of the MCP server application.', @@ -12760,7 +13107,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sentry-mcp-server', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_SERVER_TITLE]: { brief: 'Display title of the MCP server application.', @@ -12771,7 +13121,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Sentry MCP Server', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_SERVER_VERSION]: { brief: 'Version of the MCP server application.', @@ -12781,7 +13134,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '0.1.0', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_SESSION_ID]: { brief: 'Identifier for the MCP session.', @@ -12791,7 +13147,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '550e8400-e29b-41d4-a716-446655440000', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_TOOL_NAME]: { brief: 'Name of the MCP tool being called.', @@ -12801,7 +13160,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'calculator', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_TOOL_RESULT_CONTENT]: { brief: 'The content of the tool result.', @@ -12813,6 +13175,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '{"output": "rainy", "toolCallId": "1"}', changelog: [ + { version: 'next', prs: [270] }, { version: '0.3.0', prs: [171] }, { version: '0.2.0', prs: [164] }, ], @@ -12826,6 +13189,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12838,7 +13202,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: false, - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MCP_TRANSPORT]: { brief: 'Transport method used for MCP communication.', @@ -12848,7 +13215,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'stdio', - changelog: [{ version: '0.3.0', prs: [171] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [171] }, + ], }, [MDC_KEY]: { brief: @@ -12861,7 +13231,10 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "mdc.some_key='some_value'", sdks: ['java', 'java.logback', 'java.jul', 'java.log4j2'], - changelog: [{ version: '0.3.0', prs: [176] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [176] }, + ], }, [MESSAGING_DESTINATION_CONNECTION]: { brief: 'The message destination connection.', @@ -12872,7 +13245,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'BestTopic', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MESSAGING_DESTINATION_NAME]: { brief: 'The message destination name.', @@ -12883,7 +13256,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'BestTopic', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_BODY_SIZE]: { brief: 'The size of the message body in bytes.', @@ -12894,7 +13267,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 839, sdks: ['php-laravel'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_ENVELOPE_SIZE]: { brief: 'The size of the message body and metadata in bytes.', @@ -12905,7 +13278,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 1045, sdks: ['php-laravel'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_ID]: { brief: 'A value used by the messaging system as an identifier for the message, represented as a string.', @@ -12916,7 +13289,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'f47ac10b58cc4372a5670e02b2c3d479', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_RECEIVE_LATENCY]: { brief: 'The latency between when the message was published and received.', @@ -12927,7 +13300,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732847252, sdks: ['php-laravel'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_RETRY_COUNT]: { brief: 'The amount of attempts to send the message.', @@ -12938,7 +13311,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 2, sdks: ['php-laravel'], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_OPERATION_TYPE]: { brief: 'A string identifying the type of the messaging operation', @@ -12948,7 +13321,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'create', - changelog: [{ version: '0.1.0', prs: [51, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [51, 127] }, + ], }, [MESSAGING_SYSTEM]: { brief: 'The messaging system as identified by the client instrumentation.', @@ -12959,7 +13335,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'activemq', sdks: ['php-laravel'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [METHOD]: { brief: 'The HTTP method used.', @@ -12974,7 +13350,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [HTTP_REQUEST_METHOD], sdks: ['javascript-browser', 'javascript-node'], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NAVIGATION_TYPE]: { brief: 'The type of navigation done by a client-side router.', @@ -12984,7 +13360,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'router.push', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NEL_ELAPSED_TIME]: { brief: @@ -12996,6 +13372,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 100, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [68] }, ], @@ -13008,7 +13385,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'application', - changelog: [{ version: '0.1.0', prs: [68, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [68, 127] }, + ], }, [NEL_REFERRER]: { brief: "request's referrer, as determined by the referrer policy associated with its client.", @@ -13018,7 +13398,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https://example.com/foo?bar=baz', - changelog: [{ version: '0.1.0', prs: [68, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [68, 127] }, + ], }, [NEL_SAMPLING_FUNCTION]: { brief: 'The sampling function used to determine if the request should be sampled.', @@ -13029,6 +13412,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 0.5, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [68] }, ], @@ -13041,7 +13425,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'dns.unreachable', - changelog: [{ version: '0.1.0', prs: [68, 127] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [68, 127] }, + ], }, [NETWORK_LOCAL_ADDRESS]: { brief: 'Local address of the network connection - IP address or Unix domain socket name.', @@ -13052,7 +13439,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '10.1.2.80', aliases: [NET_HOST_IP, NET_SOCK_HOST_ADDR], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_LOCAL_PORT]: { brief: 'Local port number of the network connection.', @@ -13063,7 +13450,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 65400, aliases: [NET_SOCK_HOST_PORT], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [NETWORK_PEER_ADDRESS]: { brief: 'Peer address of the network connection - IP address or Unix domain socket name.', @@ -13074,7 +13461,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '10.1.2.80', aliases: [NET_PEER_IP, NET_SOCK_PEER_ADDR], - changelog: [{ version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], }, [NETWORK_PEER_PORT]: { brief: 'Peer port number of the network connection.', @@ -13084,7 +13471,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 65400, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [NETWORK_PROTOCOL_NAME]: { brief: 'OSI application layer or non-OSI equivalent.', @@ -13095,7 +13482,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'http', aliases: [NET_PROTOCOL_NAME], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_PROTOCOL_VERSION]: { brief: 'The actual version of the protocol used for network communication.', @@ -13106,7 +13493,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '1.1', aliases: [HTTP_FLAVOR, NET_PROTOCOL_VERSION], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_TRANSPORT]: { brief: 'OSI transport layer or inter-process communication method.', @@ -13117,7 +13504,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'tcp', aliases: [NET_TRANSPORT], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_TYPE]: { brief: 'OSI network layer or non-OSI equivalent.', @@ -13127,7 +13514,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'ipv4', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NET_HOST_IP]: { brief: 'Local address of the network connection - IP address or Unix domain socket name.', @@ -13141,7 +13528,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.local.address', }, aliases: [NETWORK_LOCAL_ADDRESS, NET_SOCK_HOST_ADDR], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_HOST_NAME]: { brief: @@ -13156,7 +13543,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.address', }, aliases: [SERVER_ADDRESS, HTTP_SERVER_NAME, HTTP_HOST], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_HOST_PORT]: { brief: 'Server port number.', @@ -13170,7 +13557,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.port', }, aliases: [SERVER_PORT], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [NET_PEER_IP]: { brief: 'Peer address of the network connection - IP address or Unix domain socket name.', @@ -13184,7 +13576,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.peer.address', }, aliases: [NETWORK_PEER_ADDRESS, NET_SOCK_PEER_ADDR], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_PEER_NAME]: { brief: @@ -13199,7 +13591,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.address', reason: 'Deprecated, use server.address on client spans and client.address on server spans.', }, - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NET_PEER_PORT]: { brief: 'Peer port number.', @@ -13213,7 +13605,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.port', reason: 'Deprecated, use server.port on client spans and client.port on server spans.', }, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [NET_PROTOCOL_NAME]: { brief: 'OSI application layer or non-OSI equivalent.', @@ -13227,7 +13624,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.protocol.name', }, aliases: [NETWORK_PROTOCOL_NAME], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NET_PROTOCOL_VERSION]: { brief: 'The actual version of the protocol used for network communication.', @@ -13241,7 +13638,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.protocol.version', }, aliases: [NETWORK_PROTOCOL_VERSION, HTTP_FLAVOR], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_SOCK_FAMILY]: { brief: 'OSI transport and network layer', @@ -13255,7 +13652,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.transport', reason: 'Deprecated, use network.transport and network.type.', }, - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NET_SOCK_HOST_ADDR]: { brief: 'Local address of the network connection mapping to Unix domain socket name.', @@ -13269,7 +13666,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.local.address', }, aliases: [NETWORK_LOCAL_ADDRESS, NET_HOST_IP], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_SOCK_HOST_PORT]: { brief: 'Local port number of the network connection.', @@ -13283,7 +13680,12 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.local.port', }, aliases: [NETWORK_LOCAL_PORT], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [NET_SOCK_PEER_ADDR]: { brief: 'Peer address of the network connection - IP address', @@ -13297,7 +13699,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.peer.address', }, aliases: [NETWORK_PEER_ADDRESS, NET_PEER_IP], - changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_SOCK_PEER_NAME]: { brief: 'Peer address of the network connection - Unix domain socket name', @@ -13310,7 +13712,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { reason: 'Deprecated from OTEL, no replacement at this time', }, - changelog: [{ version: '0.1.0', prs: [61, 119, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 119, 127] }, { version: '0.0.0' }], }, [NET_SOCK_PEER_PORT]: { brief: 'Peer port number of the network connection.', @@ -13323,7 +13725,12 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'network.peer.port', }, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.1.0', prs: [61] }, + { version: '0.0.0' }, + ], }, [NET_TRANSPORT]: { brief: 'OSI transport layer or inter-process communication method.', @@ -13337,7 +13744,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.transport', }, aliases: [NETWORK_TRANSPORT], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [OS_BUILD_ID]: { brief: 'The build ID of the operating system.', @@ -13347,7 +13754,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '1234567890', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_DESCRIPTION]: { brief: @@ -13358,7 +13765,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Ubuntu 18.04.1 LTS', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_NAME]: { brief: 'Human readable operating system name.', @@ -13368,7 +13775,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Ubuntu', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_TYPE]: { brief: 'The operating system type.', @@ -13378,7 +13785,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'linux', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_VERSION]: { brief: 'The version of the operating system.', @@ -13388,7 +13795,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '18.04.2', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_SCOPE_NAME]: { brief: 'The name of the instrumentation scope - (InstrumentationScope.Name in OTLP).', @@ -13398,7 +13805,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'io.opentelemetry.contrib.mongodb', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_SCOPE_VERSION]: { brief: 'The version of the instrumentation scope - (InstrumentationScope.Version in OTLP).', @@ -13408,7 +13815,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '2.4.5', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_STATUS_CODE]: { brief: 'Name of the code, either “OK” or “ERROR”. MUST NOT be set if the status code is UNSET.', @@ -13418,7 +13825,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'OK', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_STATUS_DESCRIPTION]: { brief: 'Description of the Status if it has a value, otherwise not set.', @@ -13428,7 +13835,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'resource not found', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PARAMS_KEY]: { brief: @@ -13441,7 +13848,10 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "params.id='123'", aliases: [URL_PATH_PARAMETER_KEY], - changelog: [{ version: '0.1.0', prs: [103] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103] }, + ], }, [PREVIOUS_ROUTE]: { brief: 'Also used by mobile SDKs to indicate the previous route in the application.', @@ -13452,7 +13862,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'HomeScreen', sdks: ['javascript-reactnative'], - changelog: [{ version: '0.1.0', prs: [74] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [74] }, { version: '0.0.0' }], }, [PROCESS_EXECUTABLE_NAME]: { brief: 'The name of the executable that started the process.', @@ -13462,7 +13872,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'getsentry', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PROCESS_PID]: { brief: 'The process ID of the running process.', @@ -13472,7 +13882,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 12345, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [PROCESS_RUNTIME_DESCRIPTION]: { brief: @@ -13483,7 +13893,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Eclipse OpenJ9 VM openj9-0.21.0', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PROCESS_RUNTIME_NAME]: { brief: 'The name of the runtime. Equivalent to `name` in the Sentry runtime context.', @@ -13493,7 +13903,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'node', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PROCESS_RUNTIME_VERSION]: { brief: @@ -13504,7 +13914,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '18.04.2', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [QUERY_KEY]: { brief: 'An item in a query string. Usually added by client-side routing frameworks like vue-router.', @@ -13519,7 +13929,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.query', reason: 'Instead of sending items individually in query., they should be sent all together with url.query.', }, - changelog: [{ version: '0.1.0', prs: [103] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103] }, + ], }, [RELEASE]: { brief: 'The sentry release.', @@ -13533,7 +13946,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.release', }, aliases: [SENTRY_RELEASE], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [REMIX_ACTION_FORM_DATA_KEY]: { brief: 'Remix form data, being the form data key, the value being the form data value.', @@ -13545,7 +13958,10 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "http.response.header.text='test'", sdks: ['javascript-remix'], - changelog: [{ version: '0.1.0', prs: [103] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103] }, + ], }, [REPLAY_ID]: { brief: 'The id of the sentry replay.', @@ -13559,7 +13975,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.replay_id', }, aliases: [SENTRY_REPLAY_ID], - changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [RESOURCE_DEPLOYMENT_ENVIRONMENT]: { brief: 'The software deployment environment name.', @@ -13572,7 +13988,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'sentry.environment', }, - changelog: [{ version: 'next', prs: [266] }], + changelog: [{ version: 'next', prs: [266, 270] }], }, [RESOURCE_DEPLOYMENT_ENVIRONMENT_NAME]: { brief: 'The software deployment environment name.', @@ -13585,7 +14001,10 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'sentry.environment', }, - changelog: [{ version: '0.3.1', prs: [196] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [196] }, + ], }, [RESOURCE_RENDER_BLOCKING_STATUS]: { brief: 'The render blocking status of the resource.', @@ -13596,7 +14015,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'non-blocking', sdks: ['javascript-browser'], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [ROUTE]: { brief: @@ -13612,7 +14031,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [HTTP_ROUTE], sdks: ['php-laravel', 'javascript-reactnative'], - changelog: [{ version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], }, [RPC_GRPC_STATUS_CODE]: { brief: 'The numeric status code of the gRPC request.', @@ -13622,7 +14041,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 2, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [RPC_SERVICE]: { brief: 'The full (logical) name of the service being called, including its package name, if applicable.', @@ -13632,7 +14051,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'myService.BestService', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [SENTRY_ACTION]: { brief: @@ -13643,7 +14062,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'SELECT', - changelog: [{ version: '0.4.0', prs: [212] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [212] }, + ], }, [SENTRY_BROWSER_NAME]: { brief: 'The name of the browser.', @@ -13657,7 +14079,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'browser.name', }, aliases: [BROWSER_NAME], - changelog: [{ version: '0.1.0', prs: [139] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [139] }, + ], }, [SENTRY_BROWSER_VERSION]: { brief: 'The version of the browser.', @@ -13671,7 +14096,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'browser.version', }, aliases: [BROWSER_VERSION], - changelog: [{ version: '0.1.0', prs: [139] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [139] }, + ], }, [SENTRY_CANCELLATION_REASON]: { brief: 'The reason why a span ended early.', @@ -13681,7 +14109,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'document.hidden', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_CATEGORY]: { brief: @@ -13692,7 +14120,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'db', - changelog: [{ version: '0.4.0', prs: [218] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [218] }, + ], }, [SENTRY_CLIENT_SAMPLE_RATE]: { brief: 'Rate at which a span was sampled in the SDK.', @@ -13702,7 +14133,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0.5, - changelog: [{ version: '0.1.0', prs: [102] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [102] }, + ], }, [SENTRY_DESCRIPTION]: { brief: 'The human-readable description of a span.', @@ -13712,7 +14146,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'index view query', - changelog: [{ version: '0.1.0', prs: [135] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [135] }, + ], }, [SENTRY_DIST]: { brief: 'The sentry dist.', @@ -13722,7 +14159,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1.0', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_DOMAIN]: { brief: @@ -13733,7 +14170,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'example.com', - changelog: [{ version: '0.4.0', prs: [212] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [212] }, + ], }, [SENTRY_DSC_ENVIRONMENT]: { brief: 'The environment from the dynamic sampling context.', @@ -13743,7 +14183,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'prod', - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_DSC_PUBLIC_KEY]: { brief: 'The public key from the dynamic sampling context.', @@ -13753,7 +14196,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'c51734c603c4430eb57cb0a5728a479d', - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_DSC_RELEASE]: { brief: 'The release identifier from the dynamic sampling context.', @@ -13763,7 +14209,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'frontend@e8211be71b214afab5b85de4b4c54be3714952bb', - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_DSC_SAMPLED]: { brief: 'Whether the event was sampled according to the dynamic sampling context.', @@ -13773,7 +14222,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_DSC_SAMPLE_RATE]: { brief: 'The sample rate from the dynamic sampling context.', @@ -13783,7 +14235,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1.0', - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_DSC_TRACE_ID]: { brief: 'The trace ID from the dynamic sampling context.', @@ -13793,7 +14248,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '047372980460430cbc78d9779df33a46', - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_DSC_TRANSACTION]: { brief: 'The transaction name from the dynamic sampling context.', @@ -13803,7 +14261,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '/issues/errors-outages/', - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_ENVIRONMENT]: { brief: 'The sentry environment.', @@ -13814,7 +14275,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'production', aliases: [ENVIRONMENT], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_EXCLUSIVE_TIME]: { brief: 'The exclusive time duration of the span in milliseconds.', @@ -13824,7 +14285,12 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1234, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [160] }, { version: '0.0.0' }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [228] }, + { version: '0.3.0', prs: [160] }, + { version: '0.0.0' }, + ], }, [SENTRY_GRAPHQL_OPERATION]: { brief: 'Indicates the type of graphql operation, emitted by the Javascript SDK.', @@ -13834,7 +14300,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'getUserById', - changelog: [{ version: '0.3.1', prs: [190] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [190] }, + ], }, [SENTRY_GROUP]: { brief: @@ -13844,7 +14313,10 @@ export const ATTRIBUTE_METADATA: Record = { isPii: 'false', }, isInOtel: false, - changelog: [{ version: '0.4.0', prs: [212] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [212] }, + ], }, [SENTRY_HTTP_PREFETCH]: { brief: 'If an http request was a prefetch request.', @@ -13854,7 +14326,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_IDLE_SPAN_FINISH_REASON]: { brief: 'The reason why an idle span ended early.', @@ -13864,7 +14336,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'idleTimeout', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_IS_REMOTE]: { brief: "Indicates whether a span's parent is remote.", @@ -13874,7 +14346,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.3.1', prs: [190] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [190] }, + ], }, [SENTRY_KIND]: { brief: @@ -13885,17 +14360,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'server', - changelog: [{ version: '0.3.1', prs: [190] }], - }, - [SENTRY_LOG_SEQUENCE]: { - brief: - 'A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.', - type: 'integer', - pii: { - isPii: 'false', - }, - isInOtel: false, - example: 42, + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [190] }, + ], }, [SENTRY_MESSAGE_PARAMETER_KEY]: { brief: @@ -13906,7 +14374,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: "sentry.message.parameter.0='123'", - changelog: [{ version: '0.1.0', prs: [116] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [116] }, + ], }, [SENTRY_MESSAGE_TEMPLATE]: { brief: 'The parameterized template string.', @@ -13916,7 +14387,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Hello, {name}!', - changelog: [{ version: '0.1.0', prs: [116] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [116] }, + ], }, [SENTRY_MODULE_KEY]: { brief: 'A module that was loaded in the process. The key is the name of the module.', @@ -13927,7 +14401,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, hasDynamicSuffix: true, example: "sentry.module.brianium/paratest='v7.7.0'", - changelog: [{ version: '0.1.0', prs: [103] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103] }, + ], }, [SENTRY_NEXTJS_SSR_FUNCTION_ROUTE]: { brief: @@ -13939,7 +14416,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '/posts/[id]/layout', sdks: ['javascript'], - changelog: [{ version: '0.1.0', prs: [54, 106] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [54, 106] }, + ], }, [SENTRY_NEXTJS_SSR_FUNCTION_TYPE]: { brief: @@ -13951,7 +14431,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'generateMetadata', sdks: ['javascript'], - changelog: [{ version: '0.1.0', prs: [54, 106] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [54, 106] }, + ], }, [SENTRY_NORMALIZED_DB_QUERY]: { brief: 'The normalized version of `db.query.text`.', @@ -13961,7 +14444,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'SELECT .. FROM sentry_project WHERE (project_id = %s)', - changelog: [{ version: '0.3.1', prs: [194] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [194] }, + ], }, [SENTRY_NORMALIZED_DB_QUERY_HASH]: { brief: 'The hash of `sentry.normalized_db_query`.', @@ -13970,7 +14456,10 @@ export const ATTRIBUTE_METADATA: Record = { isPii: 'false', }, isInOtel: false, - changelog: [{ version: '0.4.0', prs: [200] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [200] }, + ], }, [SENTRY_NORMALIZED_DESCRIPTION]: { brief: @@ -13981,7 +14470,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'SELECT .. FROM sentry_project WHERE (project_id = %s)', - changelog: [{ version: '0.4.0', prs: [212] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [212] }, + ], }, [SENTRY_OBSERVED_TIMESTAMP_NANOS]: { brief: 'The timestamp at which an envelope was received by Relay, in nanoseconds.', @@ -13992,6 +14484,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '1544712660300000000', changelog: [ + { version: 'next', prs: [270] }, { version: '0.3.0', prs: [174] }, { version: '0.2.0', prs: [137] }, ], @@ -14004,7 +14497,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'http.client', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_ORIGIN]: { brief: 'The origin of the instrumentation (e.g. span, log, etc.)', @@ -14014,7 +14507,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'auto.http.otel.fastify', - changelog: [{ version: '0.1.0', prs: [68] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [68] }, { version: '0.0.0' }], }, [SENTRY_PLATFORM]: { brief: 'The sdk platform that generated the event.', @@ -14024,7 +14517,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'php', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_PROFILER_ID]: { brief: 'The id of the currently running profiler (continuous profiling)', @@ -14034,7 +14527,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '18779b64dd35d1a538e7ce2dd2d3fad3', - changelog: [{ version: '0.4.0', prs: [242] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [242] }, + ], }, [SENTRY_RELEASE]: { brief: 'The sentry release.', @@ -14045,7 +14541,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '7.0.0', aliases: [SERVICE_VERSION, RELEASE], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_REPLAY_ID]: { brief: 'The id of the sentry replay.', @@ -14056,7 +14552,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '123e4567e89b12d3a456426614174000', aliases: [REPLAY_ID], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_REPLAY_IS_BUFFERING]: { brief: @@ -14067,7 +14563,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.3.0', prs: [185] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [185] }, + ], }, [SENTRY_SDK_INTEGRATIONS]: { brief: @@ -14078,7 +14577,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: ['InboundFilters', 'FunctionToString', 'BrowserApiErrors', 'Breadcrumbs'], - changelog: [{ version: '0.0.0', prs: [42] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.0.0', prs: [42] }, + ], }, [SENTRY_SDK_NAME]: { brief: 'The sentry sdk name.', @@ -14088,7 +14590,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '@sentry/react', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_SDK_VERSION]: { brief: 'The sentry sdk version.', @@ -14098,7 +14600,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '7.0.0', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SENTRY_SEGMENT_ID]: { brief: 'The segment ID of a span', @@ -14109,7 +14611,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '051581bf3cb55c13', aliases: [_SENTRY_SEGMENT_ID], - changelog: [{ version: '0.1.0', prs: [107, 124] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [107, 124] }, + ], }, [_SENTRY_SEGMENT_ID]: { brief: 'The segment ID of a span', @@ -14123,7 +14628,10 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.segment.id', }, aliases: [SENTRY_SEGMENT_ID], - changelog: [{ version: '0.1.0', prs: [124] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [124] }, + ], }, [SENTRY_SEGMENT_NAME]: { brief: 'The segment name of a span', @@ -14133,7 +14641,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'GET /user', - changelog: [{ version: '0.1.0', prs: [104] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [104] }, + ], }, [SENTRY_SERVER_SAMPLE_RATE]: { brief: 'Rate at which a span was sampled in Relay.', @@ -14143,7 +14654,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0.5, - changelog: [{ version: '0.1.0', prs: [102] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [102] }, + ], }, [SENTRY_SPAN_SOURCE]: { brief: @@ -14154,7 +14668,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'route', - changelog: [{ version: '0.4.0', prs: [214] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [214] }, { version: '0.0.0' }], }, [SENTRY_STATUS_CODE]: { brief: @@ -14165,7 +14679,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 200, - changelog: [{ version: '0.4.0', prs: [223, 228] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.4.0', prs: [223, 228] }, + ], }, [SENTRY_STATUS_MESSAGE]: { brief: 'The from OTLP extracted status message.', @@ -14175,7 +14692,20 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'foobar', - changelog: [{ version: '0.3.1', prs: [190] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.1', prs: [190] }, + ], + }, + [SENTRY_TIMESTAMP_SEQUENCE]: { + brief: + 'A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.', + type: 'integer', + pii: { + isPii: 'false', + }, + isInOtel: false, + example: 0, }, [SENTRY_TRACE_PARENT_SPAN_ID]: { brief: @@ -14186,7 +14716,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'b0e6f15b45c36b12', - changelog: [{ version: '0.1.0', prs: [116] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [116] }, + ], }, [SENTRY_TRANSACTION]: { brief: 'The sentry transaction (segment name).', @@ -14197,7 +14730,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'GET /', aliases: [TRANSACTION], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [SERVER_ADDRESS]: { brief: @@ -14209,7 +14742,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'example.com', aliases: [HTTP_SERVER_NAME, NET_HOST_NAME, HTTP_HOST], - changelog: [{ version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], }, [SERVER_PORT]: { brief: 'Server port number.', @@ -14220,7 +14753,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 1337, aliases: [NET_HOST_PORT], - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [SERVICE_NAME]: { brief: 'Logical name of the service.', @@ -14230,7 +14763,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'omegastar', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [SERVICE_VERSION]: { brief: 'The version string of the service API or implementation. The format is not defined by these conventions.', @@ -14241,7 +14774,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '5.0.0', aliases: [SENTRY_RELEASE], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [THREAD_ID]: { brief: 'Current “managed” thread ID.', @@ -14251,7 +14784,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 56, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [THREAD_NAME]: { brief: 'Current thread name.', @@ -14261,7 +14794,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'main', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [TIMBER_TAG]: { brief: 'The log tag provided by the timber logging framework.', @@ -14272,7 +14805,10 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'MyTag', sdks: ['sentry.java.android'], - changelog: [{ version: '0.3.0', prs: [183] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.3.0', prs: [183] }, + ], }, [TRANSACTION]: { brief: 'The sentry transaction (segment name).', @@ -14286,7 +14822,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.transaction', }, aliases: [SENTRY_TRANSACTION], - changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [TYPE]: { brief: 'More granular type of the operation happening.', @@ -14297,7 +14833,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'fetch', sdks: ['javascript-browser', 'javascript-node'], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [UI_COMPONENT_NAME]: { brief: 'The name of the associated component.', @@ -14307,7 +14843,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'HomeButton', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [UI_CONTRIBUTES_TO_TTFD]: { brief: 'Whether the span execution contributed to the TTFD (time to fully drawn) metric.', @@ -14317,7 +14853,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [UI_CONTRIBUTES_TO_TTID]: { brief: 'Whether the span execution contributed to the TTID (time to initial display) metric.', @@ -14327,7 +14863,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [URL]: { brief: 'The URL of the resource that was fetched.', @@ -14342,7 +14878,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [URL_FULL, HTTP_URL], sdks: ['javascript-browser', 'javascript-node'], - changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [URL_DOMAIN]: { brief: @@ -14353,7 +14889,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'example.com', - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [URL_FRAGMENT]: { brief: @@ -14364,7 +14900,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'details', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [URL_FULL]: { brief: 'The URL of the resource that was fetched.', @@ -14375,7 +14911,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'https://example.com/test?foo=bar#buzz', aliases: [HTTP_URL, URL], - changelog: [{ version: '0.1.0', prs: [108] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [108] }, { version: '0.0.0' }], }, [URL_PATH]: { brief: 'The URI path component.', @@ -14385,7 +14921,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '/foo', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [URL_PATH_PARAMETER_KEY]: { brief: @@ -14398,7 +14934,10 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "url.path.parameter.id='123'", aliases: [PARAMS_KEY], - changelog: [{ version: '0.1.0', prs: [103] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [103] }, + ], }, [URL_PORT]: { brief: 'Server port number.', @@ -14408,7 +14947,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 1337, - changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [URL_QUERY]: { brief: @@ -14421,7 +14960,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'foo=bar&bar=baz', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [URL_SCHEME]: { brief: 'The URI scheme component identifying the used protocol.', @@ -14432,7 +14971,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'https', aliases: [HTTP_SCHEME], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [URL_TEMPLATE]: { brief: 'The low-cardinality template of an absolute path reference.', @@ -14443,7 +14982,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '/users/:id', aliases: [HTTP_ROUTE], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [USER_AGENT_ORIGINAL]: { brief: 'Value of the HTTP User-Agent header sent by the client.', @@ -14455,7 +14994,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1', aliases: [HTTP_USER_AGENT], - changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [USER_EMAIL]: { brief: 'User email address.', @@ -14465,7 +15004,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'test@example.com', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_FULL_NAME]: { brief: "User's full name.", @@ -14475,7 +15014,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'John Smith', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_GEO_CITY]: { brief: 'Human readable city name.', @@ -14485,7 +15024,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Toronto', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_GEO_COUNTRY_CODE]: { brief: 'Two-letter country code (ISO 3166-1 alpha-2).', @@ -14495,7 +15034,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'CA', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_GEO_REGION]: { brief: 'Human readable region name or code.', @@ -14505,7 +15044,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Canada', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_GEO_SUBDIVISION]: { brief: 'Human readable subdivision name.', @@ -14515,7 +15054,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Ontario', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_HASH]: { brief: 'Unique user hash to correlate information for a user in anonymized form.', @@ -14525,7 +15064,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_ID]: { brief: 'Unique identifier of the user.', @@ -14535,7 +15074,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'S-1-5-21-202424912787-2692429404-2351956786-1000', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_IP_ADDRESS]: { brief: 'The IP address of the user.', @@ -14545,7 +15084,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '192.168.1.1', - changelog: [{ version: '0.1.0', prs: [75] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.1.0', prs: [75] }, + ], }, [USER_NAME]: { brief: 'Short name or login/username of the user.', @@ -14555,7 +15097,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'j.smith', - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [USER_ROLES]: { brief: 'Array of user roles at the time of the event.', @@ -14565,7 +15107,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: ['admin', 'editor'], - changelog: [{ version: '0.0.0' }], + changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], }, [VERCEL_BRANCH]: { brief: 'Git branch name for Vercel project', @@ -14575,7 +15117,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'main', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_BUILD_ID]: { brief: 'Identifier for the Vercel build (only present on build logs)', @@ -14585,7 +15130,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'bld_cotnkcr76', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_DEPLOYMENT_ID]: { brief: 'Identifier for the Vercel deployment', @@ -14595,7 +15143,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'dpl_233NRGRjVZX1caZrXWtz5g1TAksD', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_DESTINATION]: { brief: 'Origin of the external content in Vercel (only on external logs)', @@ -14605,7 +15156,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https://vitals.vercel-insights.com/v1', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_EDGE_TYPE]: { brief: 'Type of edge runtime in Vercel', @@ -14615,7 +15169,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'edge-function', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_ENTRYPOINT]: { brief: 'Entrypoint for the request in Vercel', @@ -14625,7 +15182,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'api/index.js', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_EXECUTION_REGION]: { brief: 'Region where the request is executed', @@ -14635,7 +15195,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_ID]: { brief: 'Unique identifier for the log entry in Vercel', @@ -14645,7 +15208,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1573817187330377061717300000', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_JA3_DIGEST]: { brief: 'JA3 fingerprint digest of Vercel request', @@ -14655,7 +15221,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_JA4_DIGEST]: { brief: 'JA4 fingerprint digest', @@ -14665,7 +15234,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 't13d1516h2_8daaf6152771_02713d6af862', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_LOG_TYPE]: { brief: 'Vercel log output type', @@ -14675,7 +15247,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'stdout', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROJECT_ID]: { brief: 'Identifier for the Vercel project', @@ -14685,7 +15260,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'gdufoJxB6b9b1fEqr1jUtFkyavUU', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROJECT_NAME]: { brief: 'Name of the Vercel project', @@ -14695,7 +15273,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'my-app', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_CACHE_ID]: { brief: 'Original request ID when request is served from cache', @@ -14705,7 +15286,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'pdx1::v8g4b-1744143786684-93dafbc0f70d', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_CLIENT_IP]: { brief: 'Client IP address', @@ -14715,7 +15299,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '120.75.16.101', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_HOST]: { brief: 'Hostname of the request', @@ -14725,7 +15312,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'test.vercel.app', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_LAMBDA_REGION]: { brief: 'Region where lambda function executed', @@ -14735,7 +15325,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_METHOD]: { brief: 'HTTP method of the request', @@ -14745,7 +15338,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'GET', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_PATH]: { brief: 'Request path with query parameters', @@ -14755,7 +15351,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '/dynamic/some-value.json?route=some-value', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_PATH_TYPE]: { brief: 'How the request was served based on its path and project configuration', @@ -14765,7 +15364,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'func', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_PATH_TYPE_VARIANT]: { brief: 'Variant of the path type', @@ -14775,7 +15377,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'api', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_REFERER]: { brief: 'Referer of the request', @@ -14785,7 +15390,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '*.vercel.app', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_REGION]: { brief: 'Region where the request is processed', @@ -14795,7 +15403,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_RESPONSE_BYTE_SIZE]: { brief: 'Size of the response in bytes', @@ -14806,6 +15417,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1024, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -14818,7 +15430,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_STATUS_CODE]: { brief: 'HTTP status code of the proxy request', @@ -14829,6 +15444,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 200, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -14842,6 +15458,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1573817250172, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -14854,7 +15471,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: ['Mozilla/5.0...'], - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_VERCEL_CACHE]: { brief: 'Cache status sent to the browser', @@ -14864,7 +15484,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'REVALIDATED', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_VERCEL_ID]: { brief: 'Vercel-specific identifier', @@ -14874,7 +15497,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1::abc123', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_WAF_ACTION]: { brief: 'Action taken by firewall rules', @@ -14884,7 +15510,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'deny', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_PROXY_WAF_RULE_ID]: { brief: 'ID of the firewall rule that matched', @@ -14894,7 +15523,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'rule_gAHz8jtSB1Gy', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_REQUEST_ID]: { brief: 'Identifier of the Vercel request', @@ -14904,7 +15536,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '643af4e3-975a-4cc7-9e7a-1eda11539d90', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_SOURCE]: { brief: 'Origin of the Vercel log (build, edge, lambda, static, external, or firewall)', @@ -14914,7 +15549,10 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'build', - changelog: [{ version: '0.2.0', prs: [163] }], + changelog: [ + { version: 'next', prs: [270] }, + { version: '0.2.0', prs: [163] }, + ], }, [VERCEL_STATUS_CODE]: { brief: 'HTTP status code of the request (-1 means no response returned and the lambda crashed)', @@ -14925,6 +15563,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 200, changelog: [ + { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -15265,7 +15904,6 @@ export type Attributes = { [SENTRY_IDLE_SPAN_FINISH_REASON]?: SENTRY_IDLE_SPAN_FINISH_REASON_TYPE; [SENTRY_IS_REMOTE]?: SENTRY_IS_REMOTE_TYPE; [SENTRY_KIND]?: SENTRY_KIND_TYPE; - [SENTRY_LOG_SEQUENCE]?: SENTRY_LOG_SEQUENCE_TYPE; [SENTRY_MESSAGE_PARAMETER_KEY]?: SENTRY_MESSAGE_PARAMETER_KEY_TYPE; [SENTRY_MESSAGE_TEMPLATE]?: SENTRY_MESSAGE_TEMPLATE_TYPE; [SENTRY_MODULE_KEY]?: SENTRY_MODULE_KEY_TYPE; @@ -15292,6 +15930,7 @@ export type Attributes = { [SENTRY_SPAN_SOURCE]?: SENTRY_SPAN_SOURCE_TYPE; [SENTRY_STATUS_CODE]?: SENTRY_STATUS_CODE_TYPE; [SENTRY_STATUS_MESSAGE]?: SENTRY_STATUS_MESSAGE_TYPE; + [SENTRY_TIMESTAMP_SEQUENCE]?: SENTRY_TIMESTAMP_SEQUENCE_TYPE; [SENTRY_TRACE_PARENT_SPAN_ID]?: SENTRY_TRACE_PARENT_SPAN_ID_TYPE; [SENTRY_TRANSACTION]?: SENTRY_TRANSACTION_TYPE; [SERVER_ADDRESS]?: SERVER_ADDRESS_TYPE; diff --git a/model/attributes/ai/ai__citations.json b/model/attributes/ai/ai__citations.json index 8c9f0501..98fc0cb7 100644 --- a/model/attributes/ai/ai__citations.json +++ b/model/attributes/ai/ai__citations.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__completion_tokens__used.json b/model/attributes/ai/ai__completion_tokens__used.json index b576bac6..8df86608 100644 --- a/model/attributes/ai/ai__completion_tokens__used.json +++ b/model/attributes/ai/ai__completion_tokens__used.json @@ -14,6 +14,10 @@ "replacement": "gen_ai.usage.output_tokens" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__documents.json b/model/attributes/ai/ai__documents.json index 1dc25189..4868e76b 100644 --- a/model/attributes/ai/ai__documents.json +++ b/model/attributes/ai/ai__documents.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__finish_reason.json b/model/attributes/ai/ai__finish_reason.json index 67b35b6a..fe07725a 100644 --- a/model/attributes/ai/ai__finish_reason.json +++ b/model/attributes/ai/ai__finish_reason.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.response.finish_reasons"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] diff --git a/model/attributes/ai/ai__frequency_penalty.json b/model/attributes/ai/ai__frequency_penalty.json index 449092c8..1187ff88 100644 --- a/model/attributes/ai/ai__frequency_penalty.json +++ b/model/attributes/ai/ai__frequency_penalty.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.request.frequency_penalty"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__function_call.json b/model/attributes/ai/ai__function_call.json index 68c9c2f9..2935ec65 100644 --- a/model/attributes/ai/ai__function_call.json +++ b/model/attributes/ai/ai__function_call.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.tool.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108] diff --git a/model/attributes/ai/ai__generation_id.json b/model/attributes/ai/ai__generation_id.json index 78474c8a..e1661af9 100644 --- a/model/attributes/ai/ai__generation_id.json +++ b/model/attributes/ai/ai__generation_id.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.response.id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] diff --git a/model/attributes/ai/ai__input_messages.json b/model/attributes/ai/ai__input_messages.json index eaf43add..89ce953d 100644 --- a/model/attributes/ai/ai__input_messages.json +++ b/model/attributes/ai/ai__input_messages.json @@ -14,6 +14,10 @@ "replacement": "gen_ai.request.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [65, 119] diff --git a/model/attributes/ai/ai__is_search_required.json b/model/attributes/ai/ai__is_search_required.json index 57334139..b07c9ccc 100644 --- a/model/attributes/ai/ai__is_search_required.json +++ b/model/attributes/ai/ai__is_search_required.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__metadata.json b/model/attributes/ai/ai__metadata.json index 113e82c3..a55ecb11 100644 --- a/model/attributes/ai/ai__metadata.json +++ b/model/attributes/ai/ai__metadata.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__model__provider.json b/model/attributes/ai/ai__model__provider.json index 632297ae..9d1575a6 100644 --- a/model/attributes/ai/ai__model__provider.json +++ b/model/attributes/ai/ai__model__provider.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.provider.name", "gen_ai.system"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [253] diff --git a/model/attributes/ai/ai__model_id.json b/model/attributes/ai/ai__model_id.json index 2d1c463d..1d03e0c4 100644 --- a/model/attributes/ai/ai__model_id.json +++ b/model/attributes/ai/ai__model_id.json @@ -14,6 +14,10 @@ "replacement": "gen_ai.response.model" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [57, 61, 127] diff --git a/model/attributes/ai/ai__pipeline__name.json b/model/attributes/ai/ai__pipeline__name.json index 384af716..bef50c60 100644 --- a/model/attributes/ai/ai__pipeline__name.json +++ b/model/attributes/ai/ai__pipeline__name.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.pipeline.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [53, 76, 108, 127] diff --git a/model/attributes/ai/ai__preamble.json b/model/attributes/ai/ai__preamble.json index 6c06fb5e..efaba967 100644 --- a/model/attributes/ai/ai__preamble.json +++ b/model/attributes/ai/ai__preamble.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__presence_penalty.json b/model/attributes/ai/ai__presence_penalty.json index e9eebb38..e7dd3b34 100644 --- a/model/attributes/ai/ai__presence_penalty.json +++ b/model/attributes/ai/ai__presence_penalty.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.request.presence_penalty"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__prompt_tokens__used.json b/model/attributes/ai/ai__prompt_tokens__used.json index 06cdb154..0bdaaed4 100644 --- a/model/attributes/ai/ai__prompt_tokens__used.json +++ b/model/attributes/ai/ai__prompt_tokens__used.json @@ -14,6 +14,10 @@ "replacement": "gen_ai.usage.input_tokens" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__raw_prompting.json b/model/attributes/ai/ai__raw_prompting.json index 1d45951e..0dada49c 100644 --- a/model/attributes/ai/ai__raw_prompting.json +++ b/model/attributes/ai/ai__raw_prompting.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__response_format.json b/model/attributes/ai/ai__response_format.json index 746ab085..f63c7114 100644 --- a/model/attributes/ai/ai__response_format.json +++ b/model/attributes/ai/ai__response_format.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__responses.json b/model/attributes/ai/ai__responses.json index 7ee72897..925613be 100644 --- a/model/attributes/ai/ai__responses.json +++ b/model/attributes/ai/ai__responses.json @@ -13,6 +13,10 @@ "replacement": "gen_ai.response.text" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [65, 127] diff --git a/model/attributes/ai/ai__search_queries.json b/model/attributes/ai/ai__search_queries.json index aa0e3a86..98b6c7a2 100644 --- a/model/attributes/ai/ai__search_queries.json +++ b/model/attributes/ai/ai__search_queries.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__search_results.json b/model/attributes/ai/ai__search_results.json index ca65bf9e..96954a9f 100644 --- a/model/attributes/ai/ai__search_results.json +++ b/model/attributes/ai/ai__search_results.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__seed.json b/model/attributes/ai/ai__seed.json index a14a75f6..de594b89 100644 --- a/model/attributes/ai/ai__seed.json +++ b/model/attributes/ai/ai__seed.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.request.seed"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] diff --git a/model/attributes/ai/ai__streaming.json b/model/attributes/ai/ai__streaming.json index 6d5eda59..3d1c50c4 100644 --- a/model/attributes/ai/ai__streaming.json +++ b/model/attributes/ai/ai__streaming.json @@ -14,6 +14,10 @@ }, "alias": ["gen_ai.response.streaming"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [76, 108] diff --git a/model/attributes/ai/ai__tags.json b/model/attributes/ai/ai__tags.json index 28487e1b..87365286 100644 --- a/model/attributes/ai/ai__tags.json +++ b/model/attributes/ai/ai__tags.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__temperature.json b/model/attributes/ai/ai__temperature.json index 1b0d72e7..18b10bed 100644 --- a/model/attributes/ai/ai__temperature.json +++ b/model/attributes/ai/ai__temperature.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.request.temperature"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__texts.json b/model/attributes/ai/ai__texts.json index 8c36f4c6..e593342f 100644 --- a/model/attributes/ai/ai__texts.json +++ b/model/attributes/ai/ai__texts.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__tool_calls.json b/model/attributes/ai/ai__tool_calls.json index d769f419..5097d742 100644 --- a/model/attributes/ai/ai__tool_calls.json +++ b/model/attributes/ai/ai__tool_calls.json @@ -12,6 +12,10 @@ "replacement": "gen_ai.response.tool_calls" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 65] diff --git a/model/attributes/ai/ai__tools.json b/model/attributes/ai/ai__tools.json index 11e7be1b..59403e8d 100644 --- a/model/attributes/ai/ai__tools.json +++ b/model/attributes/ai/ai__tools.json @@ -12,6 +12,10 @@ "replacement": "gen_ai.request.available_tools" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 65, 127] diff --git a/model/attributes/ai/ai__top_k.json b/model/attributes/ai/ai__top_k.json index 5135394c..a6767d2a 100644 --- a/model/attributes/ai/ai__top_k.json +++ b/model/attributes/ai/ai__top_k.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.request.top_k"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__top_p.json b/model/attributes/ai/ai__top_p.json index 990ad95d..8714fc75 100644 --- a/model/attributes/ai/ai__top_p.json +++ b/model/attributes/ai/ai__top_p.json @@ -13,6 +13,10 @@ }, "alias": ["gen_ai.request.top_p"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__total_cost.json b/model/attributes/ai/ai__total_cost.json index f491f3fd..476c0c81 100644 --- a/model/attributes/ai/ai__total_cost.json +++ b/model/attributes/ai/ai__total_cost.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.4.0", diff --git a/model/attributes/ai/ai__total_tokens__used.json b/model/attributes/ai/ai__total_tokens__used.json index 65c6217a..00a05423 100644 --- a/model/attributes/ai/ai__total_tokens__used.json +++ b/model/attributes/ai/ai__total_tokens__used.json @@ -14,6 +14,10 @@ }, "alias": ["gen_ai.usage.total_tokens"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__warnings.json b/model/attributes/ai/ai__warnings.json index a3b39441..a7c38441 100644 --- a/model/attributes/ai/ai__warnings.json +++ b/model/attributes/ai/ai__warnings.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", diff --git a/model/attributes/app_start_type.json b/model/attributes/app_start_type.json index a55e2192..7131d342 100644 --- a/model/attributes/app_start_type.json +++ b/model/attributes/app_start_type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "cold", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/blocked_main_thread.json b/model/attributes/blocked_main_thread.json index 177539e9..4be44843 100644 --- a/model/attributes/blocked_main_thread.json +++ b/model/attributes/blocked_main_thread.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/browser/browser__name.json b/model/attributes/browser/browser__name.json index ecd4feaf..7700c23d 100644 --- a/model/attributes/browser/browser__name.json +++ b/model/attributes/browser/browser__name.json @@ -9,6 +9,10 @@ "example": "Chrome", "alias": ["sentry.browser.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127, 139] diff --git a/model/attributes/browser/browser__report__type.json b/model/attributes/browser/browser__report__type.json index fe08150e..b6da90fa 100644 --- a/model/attributes/browser/browser__report__type.json +++ b/model/attributes/browser/browser__report__type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "network-error", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/browser/browser__script__invoker.json b/model/attributes/browser/browser__script__invoker.json index d7b563f7..dfa85229 100644 --- a/model/attributes/browser/browser__script__invoker.json +++ b/model/attributes/browser/browser__script__invoker.json @@ -9,6 +9,10 @@ "example": "Window.requestAnimationFrame", "sdks": ["browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/browser/browser__script__invoker_type.json b/model/attributes/browser/browser__script__invoker_type.json index a30804a4..0f6a9597 100644 --- a/model/attributes/browser/browser__script__invoker_type.json +++ b/model/attributes/browser/browser__script__invoker_type.json @@ -9,6 +9,10 @@ "example": "event-listener", "sdks": ["browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/browser/browser__script__source_char_position.json b/model/attributes/browser/browser__script__source_char_position.json index 1b6facb4..5eb0dd16 100644 --- a/model/attributes/browser/browser__script__source_char_position.json +++ b/model/attributes/browser/browser__script__source_char_position.json @@ -9,6 +9,10 @@ "example": 678, "sdks": ["browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/browser/browser__version.json b/model/attributes/browser/browser__version.json index a363891a..5f8745cc 100644 --- a/model/attributes/browser/browser__version.json +++ b/model/attributes/browser/browser__version.json @@ -9,6 +9,10 @@ "example": "120.0.6099.130", "alias": ["sentry.browser.version"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [59, 127, 139] diff --git a/model/attributes/cache/cache__hit.json b/model/attributes/cache/cache__hit.json index 9d9e9eb0..064f8dab 100644 --- a/model/attributes/cache/cache__hit.json +++ b/model/attributes/cache/cache__hit.json @@ -9,6 +9,10 @@ "example": true, "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/cache/cache__item_size.json b/model/attributes/cache/cache__item_size.json index 1f6cd339..08474732 100644 --- a/model/attributes/cache/cache__item_size.json +++ b/model/attributes/cache/cache__item_size.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 58, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cache/cache__key.json b/model/attributes/cache/cache__key.json index a9e75095..a9d8ef1c 100644 --- a/model/attributes/cache/cache__key.json +++ b/model/attributes/cache/cache__key.json @@ -9,6 +9,10 @@ "example": ["my-cache-key", "my-other-cache-key"], "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/cache/cache__operation.json b/model/attributes/cache/cache__operation.json index b4e91e02..525470de 100644 --- a/model/attributes/cache/cache__operation.json +++ b/model/attributes/cache/cache__operation.json @@ -9,6 +9,10 @@ "example": "get", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/cache/cache__ttl.json b/model/attributes/cache/cache__ttl.json index 3ecd7f75..160363dd 100644 --- a/model/attributes/cache/cache__ttl.json +++ b/model/attributes/cache/cache__ttl.json @@ -9,6 +9,10 @@ "example": 120, "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/channel.json b/model/attributes/channel.json index 7e4abe9e..6bf010f2 100644 --- a/model/attributes/channel.json +++ b/model/attributes/channel.json @@ -9,6 +9,10 @@ "example": "mail", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/client/client__address.json b/model/attributes/client/client__address.json index e244aa93..766bc184 100644 --- a/model/attributes/client/client__address.json +++ b/model/attributes/client/client__address.json @@ -9,6 +9,10 @@ "example": "example.com", "alias": ["http.client_ip"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [106, 127] diff --git a/model/attributes/client/client__port.json b/model/attributes/client/client__port.json index a1cf9799..95125376 100644 --- a/model/attributes/client/client__port.json +++ b/model/attributes/client/client__port.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 5432, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cloudflare/cloudflare__d1__duration.json b/model/attributes/cloudflare/cloudflare__d1__duration.json index 78d2a953..25e83932 100644 --- a/model/attributes/cloudflare/cloudflare__d1__duration.json +++ b/model/attributes/cloudflare/cloudflare__d1__duration.json @@ -9,6 +9,10 @@ "example": 543, "sdks": ["javascript-cloudflare"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cloudflare/cloudflare__d1__rows_read.json b/model/attributes/cloudflare/cloudflare__d1__rows_read.json index 2d1f08dc..4def21bc 100644 --- a/model/attributes/cloudflare/cloudflare__d1__rows_read.json +++ b/model/attributes/cloudflare/cloudflare__d1__rows_read.json @@ -9,6 +9,10 @@ "example": 12, "sdks": ["javascript-cloudflare"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cloudflare/cloudflare__d1__rows_written.json b/model/attributes/cloudflare/cloudflare__d1__rows_written.json index dd0f66f3..f112afb7 100644 --- a/model/attributes/cloudflare/cloudflare__d1__rows_written.json +++ b/model/attributes/cloudflare/cloudflare__d1__rows_written.json @@ -9,6 +9,10 @@ "example": 12, "sdks": ["javascript-cloudflare"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/code/code__file__path.json b/model/attributes/code/code__file__path.json index c66f7ddb..1f7f9c65 100644 --- a/model/attributes/code/code__file__path.json +++ b/model/attributes/code/code__file__path.json @@ -9,6 +9,10 @@ "example": "/app/myapplication/http/handler/server.py", "alias": ["code.filepath"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/code/code__filepath.json b/model/attributes/code/code__filepath.json index f1e8a388..41b0c72a 100644 --- a/model/attributes/code/code__filepath.json +++ b/model/attributes/code/code__filepath.json @@ -13,6 +13,10 @@ }, "alias": ["code.file.path"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/code/code__function.json b/model/attributes/code/code__function.json index 4b89de8a..d5291ac6 100644 --- a/model/attributes/code/code__function.json +++ b/model/attributes/code/code__function.json @@ -13,6 +13,10 @@ }, "alias": ["code.function.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 74] diff --git a/model/attributes/code/code__function__name.json b/model/attributes/code/code__function__name.json index 16cc534d..dbeacc56 100644 --- a/model/attributes/code/code__function__name.json +++ b/model/attributes/code/code__function__name.json @@ -9,6 +9,10 @@ "example": "server_request", "alias": ["code.function"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/code/code__line__number.json b/model/attributes/code/code__line__number.json index 7343f336..8faeb952 100644 --- a/model/attributes/code/code__line__number.json +++ b/model/attributes/code/code__line__number.json @@ -9,6 +9,10 @@ "example": 42, "alias": ["code.lineno"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/code/code__lineno.json b/model/attributes/code/code__lineno.json index 24e199d7..df5cb5fc 100644 --- a/model/attributes/code/code__lineno.json +++ b/model/attributes/code/code__lineno.json @@ -13,6 +13,10 @@ }, "alias": ["code.line.number"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/code/code__namespace.json b/model/attributes/code/code__namespace.json index 08bef67c..d2614431 100644 --- a/model/attributes/code/code__namespace.json +++ b/model/attributes/code/code__namespace.json @@ -13,6 +13,10 @@ "reason": "code.function.name should include the namespace." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 74] diff --git a/model/attributes/culture/culture__calendar.json b/model/attributes/culture/culture__calendar.json index b53c080c..2374535b 100644 --- a/model/attributes/culture/culture__calendar.json +++ b/model/attributes/culture/culture__calendar.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "GregorianCalendar", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__display_name.json b/model/attributes/culture/culture__display_name.json index 29178c8a..51baf6ea 100644 --- a/model/attributes/culture/culture__display_name.json +++ b/model/attributes/culture/culture__display_name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "English (United States)", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__is_24_hour_format.json b/model/attributes/culture/culture__is_24_hour_format.json index 4c01dc7c..8ab3cebc 100644 --- a/model/attributes/culture/culture__is_24_hour_format.json +++ b/model/attributes/culture/culture__is_24_hour_format.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__locale.json b/model/attributes/culture/culture__locale.json index e3858baa..ad50bb85 100644 --- a/model/attributes/culture/culture__locale.json +++ b/model/attributes/culture/culture__locale.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "en-US", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__timezone.json b/model/attributes/culture/culture__timezone.json index 204f34ff..c511c03f 100644 --- a/model/attributes/culture/culture__timezone.json +++ b/model/attributes/culture/culture__timezone.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Europe/Vienna", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/db/db__collection__name.json b/model/attributes/db/db__collection__name.json index 86895425..1eec5d40 100644 --- a/model/attributes/db/db__collection__name.json +++ b/model/attributes/db/db__collection__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "users", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [106, 127] diff --git a/model/attributes/db/db__name.json b/model/attributes/db/db__name.json index b18dc93f..abe6916e 100644 --- a/model/attributes/db/db__name.json +++ b/model/attributes/db/db__name.json @@ -13,6 +13,10 @@ }, "alias": ["db.namespace"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/db/db__namespace.json b/model/attributes/db/db__namespace.json index af1adaae..a0e1eca4 100644 --- a/model/attributes/db/db__namespace.json +++ b/model/attributes/db/db__namespace.json @@ -9,6 +9,10 @@ "example": "customers", "alias": ["db.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__operation.json b/model/attributes/db/db__operation.json index 29ec22b9..1e35ea9a 100644 --- a/model/attributes/db/db__operation.json +++ b/model/attributes/db/db__operation.json @@ -13,6 +13,10 @@ }, "alias": ["db.operation.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [199] diff --git a/model/attributes/db/db__operation__name.json b/model/attributes/db/db__operation__name.json index a334b3db..d0ec7ffe 100644 --- a/model/attributes/db/db__operation__name.json +++ b/model/attributes/db/db__operation__name.json @@ -9,6 +9,10 @@ "example": "SELECT", "alias": ["db.operation"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__query__parameter__[key].json b/model/attributes/db/db__query__parameter__[key].json index 186c05c1..e88a04ca 100644 --- a/model/attributes/db/db__query__parameter__[key].json +++ b/model/attributes/db/db__query__parameter__[key].json @@ -9,6 +9,10 @@ "is_in_otel": true, "example": "db.query.parameter.foo='123'", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103, 127] diff --git a/model/attributes/db/db__query__summary.json b/model/attributes/db/db__query__summary.json index e66a761d..48921043 100644 --- a/model/attributes/db/db__query__summary.json +++ b/model/attributes/db/db__query__summary.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "SELECT users;", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [208] diff --git a/model/attributes/db/db__query__text.json b/model/attributes/db/db__query__text.json index a7dd7b64..dec1823f 100644 --- a/model/attributes/db/db__query__text.json +++ b/model/attributes/db/db__query__text.json @@ -9,6 +9,10 @@ "example": "SELECT * FROM users WHERE id = $1", "alias": ["db.statement"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [208] diff --git a/model/attributes/db/db__redis__connection.json b/model/attributes/db/db__redis__connection.json index be0d455a..0fd2bb7d 100644 --- a/model/attributes/db/db__redis__connection.json +++ b/model/attributes/db/db__redis__connection.json @@ -9,6 +9,10 @@ "example": "my-redis-instance", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__redis__parameters.json b/model/attributes/db/db__redis__parameters.json index 2e524929..7284912f 100644 --- a/model/attributes/db/db__redis__parameters.json +++ b/model/attributes/db/db__redis__parameters.json @@ -9,6 +9,10 @@ "example": ["test", "*"], "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/db/db__sql__bindings.json b/model/attributes/db/db__sql__bindings.json index f956dc6f..5cdca3ca 100644 --- a/model/attributes/db/db__sql__bindings.json +++ b/model/attributes/db/db__sql__bindings.json @@ -14,6 +14,10 @@ "example": ["1", "foo"], "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/db/db__statement.json b/model/attributes/db/db__statement.json index 80212f75..2ef2e6e2 100644 --- a/model/attributes/db/db__statement.json +++ b/model/attributes/db/db__statement.json @@ -13,6 +13,10 @@ }, "alias": ["db.query.text"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [199] diff --git a/model/attributes/db/db__system.json b/model/attributes/db/db__system.json index 178ca7b7..75ba33a5 100644 --- a/model/attributes/db/db__system.json +++ b/model/attributes/db/db__system.json @@ -13,6 +13,10 @@ }, "alias": ["db.system.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [199, 224] diff --git a/model/attributes/db/db__system__name.json b/model/attributes/db/db__system__name.json index a08f7d83..4c482b98 100644 --- a/model/attributes/db/db__system__name.json +++ b/model/attributes/db/db__system__name.json @@ -9,6 +9,10 @@ "example": "postgresql", "alias": ["db.system"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__user.json b/model/attributes/db/db__user.json index 93076426..d2d71bb7 100644 --- a/model/attributes/db/db__user.json +++ b/model/attributes/db/db__user.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "fancy_user", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/device/device__brand.json b/model/attributes/device/device__brand.json index aeee4833..9723b6a1 100644 --- a/model/attributes/device/device__brand.json +++ b/model/attributes/device/device__brand.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Apple", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [116, 127] diff --git a/model/attributes/device/device__family.json b/model/attributes/device/device__family.json index 5e9e2cc1..9d8f90b9 100644 --- a/model/attributes/device/device__family.json +++ b/model/attributes/device/device__family.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "iPhone", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [116, 127] diff --git a/model/attributes/device/device__model.json b/model/attributes/device/device__model.json index e8996a51..9ef6623e 100644 --- a/model/attributes/device/device__model.json +++ b/model/attributes/device/device__model.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "iPhone 15 Pro Max", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [116, 127] diff --git a/model/attributes/environment.json b/model/attributes/environment.json index 242d8097..95a84953 100644 --- a/model/attributes/environment.json +++ b/model/attributes/environment.json @@ -13,6 +13,10 @@ }, "alias": ["sentry.environment"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/error/error__type.json b/model/attributes/error/error__type.json index 84b4ee6a..26dc913f 100644 --- a/model/attributes/error/error__type.json +++ b/model/attributes/error/error__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "timeout", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/event/event__id.json b/model/attributes/event/event__id.json index de0ab31a..a83798a7 100644 --- a/model/attributes/event/event__id.json +++ b/model/attributes/event/event__id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1234567890, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [101] diff --git a/model/attributes/event/event__name.json b/model/attributes/event/event__name.json index aa97e704..7b59bfc4 100644 --- a/model/attributes/event/event__name.json +++ b/model/attributes/event/event__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Process Payload", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [101, 127] diff --git a/model/attributes/exception/exception__escaped.json b/model/attributes/exception/exception__escaped.json index 4d81ad8e..603cade8 100644 --- a/model/attributes/exception/exception__escaped.json +++ b/model/attributes/exception/exception__escaped.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/exception/exception__message.json b/model/attributes/exception/exception__message.json index 16eddebb..ac7a6a94 100644 --- a/model/attributes/exception/exception__message.json +++ b/model/attributes/exception/exception__message.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "ENOENT: no such file or directory", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/exception/exception__stacktrace.json b/model/attributes/exception/exception__stacktrace.json index f788ba30..7f5eaff4 100644 --- a/model/attributes/exception/exception__stacktrace.json +++ b/model/attributes/exception/exception__stacktrace.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "Exception in thread \"main\" java.lang.RuntimeException: Test exception\n at com.example.GenerateTrace.methodB(GenerateTrace.java:13)\n at com.example.GenerateTrace.methodA(GenerateTrace.java:9)\n at com.example.GenerateTrace.main(GenerateTrace.java:5)", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/exception/exception__type.json b/model/attributes/exception/exception__type.json index 9db25476..82b6ea59 100644 --- a/model/attributes/exception/exception__type.json +++ b/model/attributes/exception/exception__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "OSError", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/faas/faas__coldstart.json b/model/attributes/faas/faas__coldstart.json index 7c99c2b2..8093654c 100644 --- a/model/attributes/faas/faas__coldstart.json +++ b/model/attributes/faas/faas__coldstart.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/faas/faas__cron.json b/model/attributes/faas/faas__cron.json index e4dbf36a..fb024451 100644 --- a/model/attributes/faas/faas__cron.json +++ b/model/attributes/faas/faas__cron.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "0/5 * * * ? *", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/faas/faas__time.json b/model/attributes/faas/faas__time.json index c1bc32c3..0133a2a5 100644 --- a/model/attributes/faas/faas__time.json +++ b/model/attributes/faas/faas__time.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "2020-01-23T13:47:06Z", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/faas/faas__trigger.json b/model/attributes/faas/faas__trigger.json index b32aa2fa..f0bdb489 100644 --- a/model/attributes/faas/faas__trigger.json +++ b/model/attributes/faas/faas__trigger.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "timer", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/flag/flag__evaluation__[key].json b/model/attributes/flag/flag__evaluation__[key].json index dc745de0..5b3cdc4a 100644 --- a/model/attributes/flag/flag__evaluation__[key].json +++ b/model/attributes/flag/flag__evaluation__[key].json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "flag.evaluation.is_new_ui=true", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/frames/frames__delay.json b/model/attributes/frames/frames__delay.json index 44388ffc..d499b04d 100644 --- a/model/attributes/frames/frames__delay.json +++ b/model/attributes/frames/frames__delay.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 5, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/frames/frames__frozen.json b/model/attributes/frames/frames__frozen.json index 41846a67..bbd37f28 100644 --- a/model/attributes/frames/frames__frozen.json +++ b/model/attributes/frames/frames__frozen.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 3, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/frames/frames__slow.json b/model/attributes/frames/frames__slow.json index 46f517c5..05fa1124 100644 --- a/model/attributes/frames/frames__slow.json +++ b/model/attributes/frames/frames__slow.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/frames/frames__total.json b/model/attributes/frames/frames__total.json index c7a761b4..9a66ed5d 100644 --- a/model/attributes/frames/frames__total.json +++ b/model/attributes/frames/frames__total.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 60, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/fs_error.json b/model/attributes/fs_error.json index 3453e22e..0b22e2b6 100644 --- a/model/attributes/fs_error.json +++ b/model/attributes/fs_error.json @@ -14,6 +14,10 @@ "example": "ENOENT: no such file or directory", "sdks": ["javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/gen_ai/gen_ai__agent__name.json b/model/attributes/gen_ai/gen_ai__agent__name.json index 99ff043f..3d76e426 100644 --- a/model/attributes/gen_ai/gen_ai__agent__name.json +++ b/model/attributes/gen_ai/gen_ai__agent__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "ResearchAssistant", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__conversation__id.json b/model/attributes/gen_ai/gen_ai__conversation__id.json index c27cee5f..b057d2b0 100644 --- a/model/attributes/gen_ai/gen_ai__conversation__id.json +++ b/model/attributes/gen_ai/gen_ai__conversation__id.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "conv_5j66UpCpwteGg4YSxUnt7lPY", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [250] diff --git a/model/attributes/gen_ai/gen_ai__cost__input_tokens.json b/model/attributes/gen_ai/gen_ai__cost__input_tokens.json index 58572dd8..857ddc30 100644 --- a/model/attributes/gen_ai/gen_ai__cost__input_tokens.json +++ b/model/attributes/gen_ai/gen_ai__cost__input_tokens.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 123.45, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__cost__output_tokens.json b/model/attributes/gen_ai/gen_ai__cost__output_tokens.json index 2501df9e..394677cb 100644 --- a/model/attributes/gen_ai/gen_ai__cost__output_tokens.json +++ b/model/attributes/gen_ai/gen_ai__cost__output_tokens.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 123.45, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__cost__total_tokens.json b/model/attributes/gen_ai/gen_ai__cost__total_tokens.json index 09626b70..47c4a32e 100644 --- a/model/attributes/gen_ai/gen_ai__cost__total_tokens.json +++ b/model/attributes/gen_ai/gen_ai__cost__total_tokens.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__embeddings__input.json b/model/attributes/gen_ai/gen_ai__embeddings__input.json index c43b4caa..c1a09914 100644 --- a/model/attributes/gen_ai/gen_ai__embeddings__input.json +++ b/model/attributes/gen_ai/gen_ai__embeddings__input.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "What's the weather in Paris?", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [195] diff --git a/model/attributes/gen_ai/gen_ai__input__messages.json b/model/attributes/gen_ai/gen_ai__input__messages.json index 044369d8..6b130e9f 100644 --- a/model/attributes/gen_ai/gen_ai__input__messages.json +++ b/model/attributes/gen_ai/gen_ai__input__messages.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__operation__name.json b/model/attributes/gen_ai/gen_ai__operation__name.json index 2d545fe0..2900aecd 100644 --- a/model/attributes/gen_ai/gen_ai__operation__name.json +++ b/model/attributes/gen_ai/gen_ai__operation__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "chat", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [225] diff --git a/model/attributes/gen_ai/gen_ai__operation__type.json b/model/attributes/gen_ai/gen_ai__operation__type.json index 34914b4b..e7274d65 100644 --- a/model/attributes/gen_ai/gen_ai__operation__type.json +++ b/model/attributes/gen_ai/gen_ai__operation__type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "tool", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [257] diff --git a/model/attributes/gen_ai/gen_ai__output__messages.json b/model/attributes/gen_ai/gen_ai__output__messages.json index d5e35b18..d86f8f07 100644 --- a/model/attributes/gen_ai/gen_ai__output__messages.json +++ b/model/attributes/gen_ai/gen_ai__output__messages.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "[{\"role\": \"assistant\", \"parts\": [{\"type\": \"text\", \"content\": \"The weather in Paris is currently rainy with a temperature of 57°F.\"}], \"finish_reason\": \"stop\"}]", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__pipeline__name.json b/model/attributes/gen_ai/gen_ai__pipeline__name.json index caf302b3..2001c6da 100644 --- a/model/attributes/gen_ai/gen_ai__pipeline__name.json +++ b/model/attributes/gen_ai/gen_ai__pipeline__name.json @@ -9,6 +9,10 @@ "example": "Autofix Pipeline", "alias": ["ai.pipeline.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [76, 127] diff --git a/model/attributes/gen_ai/gen_ai__prompt.json b/model/attributes/gen_ai/gen_ai__prompt.json index bce93847..a7af76c4 100644 --- a/model/attributes/gen_ai/gen_ai__prompt.json +++ b/model/attributes/gen_ai/gen_ai__prompt.json @@ -12,6 +12,10 @@ "reason": "Deprecated from OTEL, use gen_ai.input.messages with the new format instead." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [74, 108, 119] diff --git a/model/attributes/gen_ai/gen_ai__provider__name.json b/model/attributes/gen_ai/gen_ai__provider__name.json index 10f116b8..4aec9ff0 100644 --- a/model/attributes/gen_ai/gen_ai__provider__name.json +++ b/model/attributes/gen_ai/gen_ai__provider__name.json @@ -9,6 +9,10 @@ "example": "openai", "alias": ["ai.model.provider", "gen_ai.system"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [253] diff --git a/model/attributes/gen_ai/gen_ai__request__available_tools.json b/model/attributes/gen_ai/gen_ai__request__available_tools.json index d350f5ce..8c741a6c 100644 --- a/model/attributes/gen_ai/gen_ai__request__available_tools.json +++ b/model/attributes/gen_ai/gen_ai__request__available_tools.json @@ -13,6 +13,10 @@ "replacement": "gen_ai.tool.definitions" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json b/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json index 4b379846..885c5ec1 100644 --- a/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json +++ b/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json @@ -9,6 +9,10 @@ "example": 0.5, "alias": ["ai.frequency_penalty"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__max_tokens.json b/model/attributes/gen_ai/gen_ai__request__max_tokens.json index 3628bf33..60f49efa 100644 --- a/model/attributes/gen_ai/gen_ai__request__max_tokens.json +++ b/model/attributes/gen_ai/gen_ai__request__max_tokens.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 2048, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__messages.json b/model/attributes/gen_ai/gen_ai__request__messages.json index 2c98c976..df1335f7 100644 --- a/model/attributes/gen_ai/gen_ai__request__messages.json +++ b/model/attributes/gen_ai/gen_ai__request__messages.json @@ -13,6 +13,10 @@ "replacement": "gen_ai.input.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__request__model.json b/model/attributes/gen_ai/gen_ai__request__model.json index a25cb598..5d870eba 100644 --- a/model/attributes/gen_ai/gen_ai__request__model.json +++ b/model/attributes/gen_ai/gen_ai__request__model.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "gpt-4-turbo-preview", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__request__presence_penalty.json b/model/attributes/gen_ai/gen_ai__request__presence_penalty.json index 0160cc01..1bbf9a52 100644 --- a/model/attributes/gen_ai/gen_ai__request__presence_penalty.json +++ b/model/attributes/gen_ai/gen_ai__request__presence_penalty.json @@ -9,6 +9,10 @@ "example": 0.5, "alias": ["ai.presence_penalty"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__seed.json b/model/attributes/gen_ai/gen_ai__request__seed.json index 760a92ca..58894504 100644 --- a/model/attributes/gen_ai/gen_ai__request__seed.json +++ b/model/attributes/gen_ai/gen_ai__request__seed.json @@ -9,6 +9,10 @@ "example": "1234567890", "alias": ["ai.seed"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__request__temperature.json b/model/attributes/gen_ai/gen_ai__request__temperature.json index 80e43f94..f35748f1 100644 --- a/model/attributes/gen_ai/gen_ai__request__temperature.json +++ b/model/attributes/gen_ai/gen_ai__request__temperature.json @@ -9,6 +9,10 @@ "example": 0.1, "alias": ["ai.temperature"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__top_k.json b/model/attributes/gen_ai/gen_ai__request__top_k.json index e2e4a3ee..9afb784c 100644 --- a/model/attributes/gen_ai/gen_ai__request__top_k.json +++ b/model/attributes/gen_ai/gen_ai__request__top_k.json @@ -9,6 +9,10 @@ "example": 35, "alias": ["ai.top_k"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__top_p.json b/model/attributes/gen_ai/gen_ai__request__top_p.json index 59a24681..91b60ca8 100644 --- a/model/attributes/gen_ai/gen_ai__request__top_p.json +++ b/model/attributes/gen_ai/gen_ai__request__top_p.json @@ -9,6 +9,10 @@ "example": 0.7, "alias": ["ai.top_p"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__response__finish_reasons.json b/model/attributes/gen_ai/gen_ai__response__finish_reasons.json index 3e8d8a76..ea314741 100644 --- a/model/attributes/gen_ai/gen_ai__response__finish_reasons.json +++ b/model/attributes/gen_ai/gen_ai__response__finish_reasons.json @@ -9,6 +9,10 @@ "example": "COMPLETE", "alias": ["ai.finish_reason"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__response__id.json b/model/attributes/gen_ai/gen_ai__response__id.json index 2c203070..8cf3b1e1 100644 --- a/model/attributes/gen_ai/gen_ai__response__id.json +++ b/model/attributes/gen_ai/gen_ai__response__id.json @@ -9,6 +9,10 @@ "example": "gen_123abc", "alias": ["ai.generation_id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__response__model.json b/model/attributes/gen_ai/gen_ai__response__model.json index 2f923786..219949be 100644 --- a/model/attributes/gen_ai/gen_ai__response__model.json +++ b/model/attributes/gen_ai/gen_ai__response__model.json @@ -9,6 +9,10 @@ "example": "gpt-4", "alias": ["ai.model_id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/gen_ai/gen_ai__response__streaming.json b/model/attributes/gen_ai/gen_ai__response__streaming.json index 25b3aab1..8d8770e5 100644 --- a/model/attributes/gen_ai/gen_ai__response__streaming.json +++ b/model/attributes/gen_ai/gen_ai__response__streaming.json @@ -9,6 +9,10 @@ "example": true, "alias": ["ai.streaming"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [76] diff --git a/model/attributes/gen_ai/gen_ai__response__text.json b/model/attributes/gen_ai/gen_ai__response__text.json index e90da480..aa471b26 100644 --- a/model/attributes/gen_ai/gen_ai__response__text.json +++ b/model/attributes/gen_ai/gen_ai__response__text.json @@ -13,6 +13,10 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json b/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json index bb3e7354..ffa0b1bc 100644 --- a/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json +++ b/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 0.6853435, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [227] diff --git a/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json b/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json index 6ad42975..843f0420 100644 --- a/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json +++ b/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 12345.67, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__response__tool_calls.json b/model/attributes/gen_ai/gen_ai__response__tool_calls.json index a12e8ee1..c4f0905b 100644 --- a/model/attributes/gen_ai/gen_ai__response__tool_calls.json +++ b/model/attributes/gen_ai/gen_ai__response__tool_calls.json @@ -13,6 +13,10 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__system.json b/model/attributes/gen_ai/gen_ai__system.json index 3d077246..bc6ecae6 100644 --- a/model/attributes/gen_ai/gen_ai__system.json +++ b/model/attributes/gen_ai/gen_ai__system.json @@ -13,6 +13,10 @@ }, "alias": ["ai.model.provider", "gen_ai.provider.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [253] diff --git a/model/attributes/gen_ai/gen_ai__system__message.json b/model/attributes/gen_ai/gen_ai__system__message.json index 4a7b4566..f0e514bc 100644 --- a/model/attributes/gen_ai/gen_ai__system__message.json +++ b/model/attributes/gen_ai/gen_ai__system__message.json @@ -12,6 +12,10 @@ "replacement": "gen_ai.system_instructions" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__system_instructions.json b/model/attributes/gen_ai/gen_ai__system_instructions.json index 016e3189..093d29d3 100644 --- a/model/attributes/gen_ai/gen_ai__system_instructions.json +++ b/model/attributes/gen_ai/gen_ai__system_instructions.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__call__arguments.json b/model/attributes/gen_ai/gen_ai__tool__call__arguments.json index 00520274..6e6332ca 100644 --- a/model/attributes/gen_ai/gen_ai__tool__call__arguments.json +++ b/model/attributes/gen_ai/gen_ai__tool__call__arguments.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__call__result.json b/model/attributes/gen_ai/gen_ai__tool__call__result.json index a24fe7d4..eef405c1 100644 --- a/model/attributes/gen_ai/gen_ai__tool__call__result.json +++ b/model/attributes/gen_ai/gen_ai__tool__call__result.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__definitions.json b/model/attributes/gen_ai/gen_ai__tool__definitions.json index f8c53c30..0498fae8 100644 --- a/model/attributes/gen_ai/gen_ai__tool__definitions.json +++ b/model/attributes/gen_ai/gen_ai__tool__definitions.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "[{\"type\": \"function\", \"name\": \"get_current_weather\", \"description\": \"Get the current weather in a given location\", \"parameters\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\", \"description\": \"The city and state, e.g. San Francisco, CA\"}, \"unit\": {\"type\": \"string\", \"enum\": [\"celsius\", \"fahrenheit\"]}}, \"required\": [\"location\", \"unit\"]}}]", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__tool__description.json b/model/attributes/gen_ai/gen_ai__tool__description.json index d56cd574..e14bb025 100644 --- a/model/attributes/gen_ai/gen_ai__tool__description.json +++ b/model/attributes/gen_ai/gen_ai__tool__description.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "Searches the web for current information about a topic", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__tool__input.json b/model/attributes/gen_ai/gen_ai__tool__input.json index 68962c1d..9b8c9f4b 100644 --- a/model/attributes/gen_ai/gen_ai__tool__input.json +++ b/model/attributes/gen_ai/gen_ai__tool__input.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.1.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__message.json b/model/attributes/gen_ai/gen_ai__tool__message.json index c3ab8bee..75bcbac2 100644 --- a/model/attributes/gen_ai/gen_ai__tool__message.json +++ b/model/attributes/gen_ai/gen_ai__tool__message.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.1.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__name.json b/model/attributes/gen_ai/gen_ai__tool__name.json index a20f7ede..5bf80013 100644 --- a/model/attributes/gen_ai/gen_ai__tool__name.json +++ b/model/attributes/gen_ai/gen_ai__tool__name.json @@ -9,6 +9,10 @@ "example": "Flights", "alias": ["ai.function_call"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__tool__output.json b/model/attributes/gen_ai/gen_ai__tool__output.json index 419b3b53..3fc6c1d5 100644 --- a/model/attributes/gen_ai/gen_ai__tool__output.json +++ b/model/attributes/gen_ai/gen_ai__tool__output.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.1.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__type.json b/model/attributes/gen_ai/gen_ai__tool__type.json index 2d10c916..5306f053 100644 --- a/model/attributes/gen_ai/gen_ai__tool__type.json +++ b/model/attributes/gen_ai/gen_ai__tool__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "function", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json b/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json index 4175ca4b..17414aad 100644 --- a/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json @@ -13,6 +13,10 @@ }, "alias": ["ai.completion_tokens.used", "gen_ai.usage.output_tokens"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__input_tokens.json b/model/attributes/gen_ai/gen_ai__usage__input_tokens.json index 9cc66217..ebe90db9 100644 --- a/model/attributes/gen_ai/gen_ai__usage__input_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__input_tokens.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [261] + "prs": [261, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json index a603b9e8..5f821df7 100644 --- a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json +++ b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 100, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [217, 228] diff --git a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json index 5d1b2458..4d7878fc 100644 --- a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json +++ b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 50, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__output_tokens.json b/model/attributes/gen_ai/gen_ai__usage__output_tokens.json index 1b4eb1d4..090dff97 100644 --- a/model/attributes/gen_ai/gen_ai__usage__output_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__output_tokens.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [261] + "prs": [261, 270] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json b/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json index df8b6ea8..970c83fe 100644 --- a/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json +++ b/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 75, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json b/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json index 9cff253b..55f916e6 100644 --- a/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json @@ -13,6 +13,10 @@ }, "alias": ["ai.prompt_tokens.used", "gen_ai.usage.input_tokens"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__total_tokens.json b/model/attributes/gen_ai/gen_ai__usage__total_tokens.json index 0180f6cf..e3bafa5d 100644 --- a/model/attributes/gen_ai/gen_ai__usage__total_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__total_tokens.json @@ -9,6 +9,10 @@ "example": 20, "alias": ["ai.total_tokens.used"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/graphql/graphql__operation__name.json b/model/attributes/graphql/graphql__operation__name.json index 8da37ade..e4f5fdfd 100644 --- a/model/attributes/graphql/graphql__operation__name.json +++ b/model/attributes/graphql/graphql__operation__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "findBookById", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/graphql/graphql__operation__type.json b/model/attributes/graphql/graphql__operation__type.json index 1a4c32a9..41814fa6 100644 --- a/model/attributes/graphql/graphql__operation__type.json +++ b/model/attributes/graphql/graphql__operation__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "query", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__client_ip.json b/model/attributes/http/http__client_ip.json index b97e801a..8cdba4c2 100644 --- a/model/attributes/http/http__client_ip.json +++ b/model/attributes/http/http__client_ip.json @@ -13,6 +13,10 @@ }, "alias": ["client.address"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 106, 127] diff --git a/model/attributes/http/http__decoded_response_content_length.json b/model/attributes/http/http__decoded_response_content_length.json index 3f3875dc..bf58b571 100644 --- a/model/attributes/http/http__decoded_response_content_length.json +++ b/model/attributes/http/http__decoded_response_content_length.json @@ -9,6 +9,10 @@ "example": 456, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__flavor.json b/model/attributes/http/http__flavor.json index 0009f5fd..fb1dd669 100644 --- a/model/attributes/http/http__flavor.json +++ b/model/attributes/http/http__flavor.json @@ -13,6 +13,10 @@ }, "alias": ["network.protocol.version", "net.protocol.version"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/http/http__fragment.json b/model/attributes/http/http__fragment.json index f0a027bb..d061bce4 100644 --- a/model/attributes/http/http__fragment.json +++ b/model/attributes/http/http__fragment.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "#details", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/http/http__host.json b/model/attributes/http/http__host.json index 9c314ca9..a8a7786c 100644 --- a/model/attributes/http/http__host.json +++ b/model/attributes/http/http__host.json @@ -14,6 +14,10 @@ }, "alias": ["server.address", "client.address", "http.server_name", "net.host.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/http/http__method.json b/model/attributes/http/http__method.json index 276be296..333cacc1 100644 --- a/model/attributes/http/http__method.json +++ b/model/attributes/http/http__method.json @@ -13,6 +13,10 @@ }, "alias": ["http.request.method"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/http/http__query.json b/model/attributes/http/http__query.json index 3af85d70..e61658da 100644 --- a/model/attributes/http/http__query.json +++ b/model/attributes/http/http__query.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "?foo=bar&bar=baz", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/http/http__request__connect_start.json b/model/attributes/http/http__request__connect_start.json index d5b8dba2..9a973d50 100644 --- a/model/attributes/http/http__request__connect_start.json +++ b/model/attributes/http/http__request__connect_start.json @@ -9,6 +9,10 @@ "example": 1732829555.111, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__connection_end.json b/model/attributes/http/http__request__connection_end.json index efddba45..b14c1488 100644 --- a/model/attributes/http/http__request__connection_end.json +++ b/model/attributes/http/http__request__connection_end.json @@ -9,6 +9,10 @@ "example": 1732829555.15, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__domain_lookup_end.json b/model/attributes/http/http__request__domain_lookup_end.json index a60cae11..4ecee86d 100644 --- a/model/attributes/http/http__request__domain_lookup_end.json +++ b/model/attributes/http/http__request__domain_lookup_end.json @@ -9,6 +9,10 @@ "example": 1732829555.201, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__domain_lookup_start.json b/model/attributes/http/http__request__domain_lookup_start.json index f982c9a8..d3d4ff12 100644 --- a/model/attributes/http/http__request__domain_lookup_start.json +++ b/model/attributes/http/http__request__domain_lookup_start.json @@ -9,6 +9,10 @@ "example": 1732829555.322, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__fetch_start.json b/model/attributes/http/http__request__fetch_start.json index 1e9bab2a..e4a3670e 100644 --- a/model/attributes/http/http__request__fetch_start.json +++ b/model/attributes/http/http__request__fetch_start.json @@ -9,6 +9,10 @@ "example": 1732829555.389, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__header__[key].json b/model/attributes/http/http__request__header__[key].json index f4434756..a0065e5a 100644 --- a/model/attributes/http/http__request__header__[key].json +++ b/model/attributes/http/http__request__header__[key].json @@ -9,6 +9,10 @@ "is_in_otel": true, "example": "http.request.header.custom-header=['foo', 'bar']", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [201, 204] diff --git a/model/attributes/http/http__request__method.json b/model/attributes/http/http__request__method.json index 7cf16552..3a36b989 100644 --- a/model/attributes/http/http__request__method.json +++ b/model/attributes/http/http__request__method.json @@ -9,6 +9,10 @@ "example": "GET", "alias": ["method", "http.method"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__request__redirect_end.json b/model/attributes/http/http__request__redirect_end.json index a9731827..3f7e51c4 100644 --- a/model/attributes/http/http__request__redirect_end.json +++ b/model/attributes/http/http__request__redirect_end.json @@ -9,6 +9,10 @@ "example": 1732829558.502, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__redirect_start.json b/model/attributes/http/http__request__redirect_start.json index 9bed8b42..79d26d3e 100644 --- a/model/attributes/http/http__request__redirect_start.json +++ b/model/attributes/http/http__request__redirect_start.json @@ -9,6 +9,10 @@ "example": 1732829555.495, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__request_start.json b/model/attributes/http/http__request__request_start.json index 10fe4a54..b0d2525e 100644 --- a/model/attributes/http/http__request__request_start.json +++ b/model/attributes/http/http__request__request_start.json @@ -9,6 +9,10 @@ "example": 1732829555.51, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__resend_count.json b/model/attributes/http/http__request__resend_count.json index 08b05ee2..95c91729 100644 --- a/model/attributes/http/http__request__resend_count.json +++ b/model/attributes/http/http__request__resend_count.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 2, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__response_end.json b/model/attributes/http/http__request__response_end.json index 4ef97610..da82b158 100644 --- a/model/attributes/http/http__request__response_end.json +++ b/model/attributes/http/http__request__response_end.json @@ -9,6 +9,10 @@ "example": 1732829555.89, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__response_start.json b/model/attributes/http/http__request__response_start.json index 17451fb8..c3bbcfc8 100644 --- a/model/attributes/http/http__request__response_start.json +++ b/model/attributes/http/http__request__response_start.json @@ -9,6 +9,10 @@ "example": 1732829555.7, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__secure_connection_start.json b/model/attributes/http/http__request__secure_connection_start.json index 1bd55b54..7f13c133 100644 --- a/model/attributes/http/http__request__secure_connection_start.json +++ b/model/attributes/http/http__request__secure_connection_start.json @@ -9,6 +9,10 @@ "example": 1732829555.73, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__time_to_first_byte.json b/model/attributes/http/http__request__time_to_first_byte.json index 4efdfb43..9d5aa96e 100644 --- a/model/attributes/http/http__request__time_to_first_byte.json +++ b/model/attributes/http/http__request__time_to_first_byte.json @@ -9,6 +9,10 @@ "example": 1.032, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__worker_start.json b/model/attributes/http/http__request__worker_start.json index 44e71e35..5ee84dad 100644 --- a/model/attributes/http/http__request__worker_start.json +++ b/model/attributes/http/http__request__worker_start.json @@ -9,6 +9,10 @@ "example": 1732829553.68, "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response__body__size.json b/model/attributes/http/http__response__body__size.json index ca528b48..671e7f85 100644 --- a/model/attributes/http/http__response__body__size.json +++ b/model/attributes/http/http__response__body__size.json @@ -9,6 +9,10 @@ "example": 123, "alias": ["http.response_content_length", "http.response.header.content-length"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response__header__[key].json b/model/attributes/http/http__response__header__[key].json index 3c1f7b61..861ab83b 100644 --- a/model/attributes/http/http__response__header__[key].json +++ b/model/attributes/http/http__response__header__[key].json @@ -9,6 +9,10 @@ "is_in_otel": true, "example": "http.response.header.custom-header=['foo', 'bar']", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [201, 204] diff --git a/model/attributes/http/http__response__header__content-length.json b/model/attributes/http/http__response__header__content-length.json index 8edc44df..aec136f6 100644 --- a/model/attributes/http/http__response__header__content-length.json +++ b/model/attributes/http/http__response__header__content-length.json @@ -9,6 +9,10 @@ "example": "http.response.header.custom-header=['foo', 'bar']", "alias": ["http.response_content_length", "http.response.body.size"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__response__size.json b/model/attributes/http/http__response__size.json index 84544ca3..d2cfe892 100644 --- a/model/attributes/http/http__response__size.json +++ b/model/attributes/http/http__response__size.json @@ -9,6 +9,10 @@ "example": 456, "alias": ["http.response_transfer_size"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response__status_code.json b/model/attributes/http/http__response__status_code.json index a29795d7..bd52ddf1 100644 --- a/model/attributes/http/http__response__status_code.json +++ b/model/attributes/http/http__response__status_code.json @@ -9,6 +9,10 @@ "example": 404, "alias": ["http.status_code"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response_content_length.json b/model/attributes/http/http__response_content_length.json index 13330670..f2b0c383 100644 --- a/model/attributes/http/http__response_content_length.json +++ b/model/attributes/http/http__response_content_length.json @@ -13,6 +13,10 @@ }, "alias": ["http.response.body.size", "http.response.header.content-length"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response_transfer_size.json b/model/attributes/http/http__response_transfer_size.json index ec0d946a..b4d87d70 100644 --- a/model/attributes/http/http__response_transfer_size.json +++ b/model/attributes/http/http__response_transfer_size.json @@ -13,6 +13,10 @@ }, "alias": ["http.response.size"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__route.json b/model/attributes/http/http__route.json index a7ec1651..d9a40013 100644 --- a/model/attributes/http/http__route.json +++ b/model/attributes/http/http__route.json @@ -9,6 +9,10 @@ "example": "/users/:id", "alias": ["url.template"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__scheme.json b/model/attributes/http/http__scheme.json index d5cd0d6b..bc8ab05d 100644 --- a/model/attributes/http/http__scheme.json +++ b/model/attributes/http/http__scheme.json @@ -13,6 +13,10 @@ }, "alias": ["url.scheme"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/http/http__server__request__time_in_queue.json b/model/attributes/http/http__server__request__time_in_queue.json index b2260d37..f377c1a0 100644 --- a/model/attributes/http/http__server__request__time_in_queue.json +++ b/model/attributes/http/http__server__request__time_in_queue.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [267] + "prs": [267, 270] } ] } diff --git a/model/attributes/http/http__server_name.json b/model/attributes/http/http__server_name.json index e14b4228..50229d65 100644 --- a/model/attributes/http/http__server_name.json +++ b/model/attributes/http/http__server_name.json @@ -13,6 +13,10 @@ }, "alias": ["server.address", "net.host.name", "http.host"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/http/http__status_code.json b/model/attributes/http/http__status_code.json index bb51562d..fbc02edf 100644 --- a/model/attributes/http/http__status_code.json +++ b/model/attributes/http/http__status_code.json @@ -13,6 +13,10 @@ }, "alias": ["http.response.status_code"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__target.json b/model/attributes/http/http__target.json index e2994ce1..9b3a9002 100644 --- a/model/attributes/http/http__target.json +++ b/model/attributes/http/http__target.json @@ -13,6 +13,10 @@ "reason": "This attribute is being deprecated in favor of url.path and url.query" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/http/http__url.json b/model/attributes/http/http__url.json index 07ebb898..f7c0e867 100644 --- a/model/attributes/http/http__url.json +++ b/model/attributes/http/http__url.json @@ -13,6 +13,10 @@ }, "alias": ["url.full", "url"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108] diff --git a/model/attributes/http/http__user_agent.json b/model/attributes/http/http__user_agent.json index e5ff1afa..29c1ba09 100644 --- a/model/attributes/http/http__user_agent.json +++ b/model/attributes/http/http__user_agent.json @@ -13,6 +13,10 @@ }, "alias": ["user_agent.original"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/id.json b/model/attributes/id.json index faf204f4..d6f6c9cb 100644 --- a/model/attributes/id.json +++ b/model/attributes/id.json @@ -9,6 +9,10 @@ "example": "f47ac10b58cc4372a5670e02b2c3d479", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/jvm/jvm__gc__action.json b/model/attributes/jvm/jvm__gc__action.json index 48622975..7e70b193 100644 --- a/model/attributes/jvm/jvm__gc__action.json +++ b/model/attributes/jvm/jvm__gc__action.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "end of minor GC", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__gc__name.json b/model/attributes/jvm/jvm__gc__name.json index bc00a607..a8d4a047 100644 --- a/model/attributes/jvm/jvm__gc__name.json +++ b/model/attributes/jvm/jvm__gc__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "G1 Young Generation", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__memory__pool__name.json b/model/attributes/jvm/jvm__memory__pool__name.json index 86dce78d..80d528f4 100644 --- a/model/attributes/jvm/jvm__memory__pool__name.json +++ b/model/attributes/jvm/jvm__memory__pool__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "G1 Old Gen", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__memory__type.json b/model/attributes/jvm/jvm__memory__type.json index 6fe577f6..2ec99b3a 100644 --- a/model/attributes/jvm/jvm__memory__type.json +++ b/model/attributes/jvm/jvm__memory__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "G1 Old Gen", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__thread__daemon.json b/model/attributes/jvm/jvm__thread__daemon.json index 52458b11..e98981c8 100644 --- a/model/attributes/jvm/jvm__thread__daemon.json +++ b/model/attributes/jvm/jvm__thread__daemon.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/jvm/jvm__thread__state.json b/model/attributes/jvm/jvm__thread__state.json index 164b98f2..07a9b518 100644 --- a/model/attributes/jvm/jvm__thread__state.json +++ b/model/attributes/jvm/jvm__thread__state.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "blocked", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/lcp/lcp__element.json b/model/attributes/lcp/lcp__element.json index 31df8f97..f9ad1251 100644 --- a/model/attributes/lcp/lcp__element.json +++ b/model/attributes/lcp/lcp__element.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "img", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/lcp/lcp__id.json b/model/attributes/lcp/lcp__id.json index 8bff47af..672eff0e 100644 --- a/model/attributes/lcp/lcp__id.json +++ b/model/attributes/lcp/lcp__id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "#hero", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/lcp/lcp__size.json b/model/attributes/lcp/lcp__size.json index 79395161..e2d5e70d 100644 --- a/model/attributes/lcp/lcp__size.json +++ b/model/attributes/lcp/lcp__size.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1234, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/lcp/lcp__url.json b/model/attributes/lcp/lcp__url.json index ca6377e9..bd0e934f 100644 --- a/model/attributes/lcp/lcp__url.json +++ b/model/attributes/lcp/lcp__url.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "https://example.com", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/logger/logger__name.json b/model/attributes/logger/logger__name.json index e01d0c63..d9c7a1a7 100644 --- a/model/attributes/logger/logger__name.json +++ b/model/attributes/logger/logger__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "myLogger", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/mcp/mcp__cancelled__reason.json b/model/attributes/mcp/mcp__cancelled__reason.json index e3571c4f..24a4cc0f 100644 --- a/model/attributes/mcp/mcp__cancelled__reason.json +++ b/model/attributes/mcp/mcp__cancelled__reason.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "User cancelled the request", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__cancelled__request_id.json b/model/attributes/mcp/mcp__cancelled__request_id.json index a4e4a58a..519508f0 100644 --- a/model/attributes/mcp/mcp__cancelled__request_id.json +++ b/model/attributes/mcp/mcp__cancelled__request_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "123", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__client__name.json b/model/attributes/mcp/mcp__client__name.json index 364bcc12..fedc8f2b 100644 --- a/model/attributes/mcp/mcp__client__name.json +++ b/model/attributes/mcp/mcp__client__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "claude-desktop", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__client__title.json b/model/attributes/mcp/mcp__client__title.json index 11e182e2..11bb8107 100644 --- a/model/attributes/mcp/mcp__client__title.json +++ b/model/attributes/mcp/mcp__client__title.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "Claude Desktop", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__client__version.json b/model/attributes/mcp/mcp__client__version.json index ff1d3835..f0218307 100644 --- a/model/attributes/mcp/mcp__client__version.json +++ b/model/attributes/mcp/mcp__client__version.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "1.0.0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__lifecycle__phase.json b/model/attributes/mcp/mcp__lifecycle__phase.json index 616b8af6..a8192c7f 100644 --- a/model/attributes/mcp/mcp__lifecycle__phase.json +++ b/model/attributes/mcp/mcp__lifecycle__phase.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "initialization_complete", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__data_type.json b/model/attributes/mcp/mcp__logging__data_type.json index 65007e71..48446ffc 100644 --- a/model/attributes/mcp/mcp__logging__data_type.json +++ b/model/attributes/mcp/mcp__logging__data_type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "string", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__level.json b/model/attributes/mcp/mcp__logging__level.json index d17f8896..1cddeac2 100644 --- a/model/attributes/mcp/mcp__logging__level.json +++ b/model/attributes/mcp/mcp__logging__level.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "info", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__logger.json b/model/attributes/mcp/mcp__logging__logger.json index b24752fe..a0583694 100644 --- a/model/attributes/mcp/mcp__logging__logger.json +++ b/model/attributes/mcp/mcp__logging__logger.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "mcp_server", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__message.json b/model/attributes/mcp/mcp__logging__message.json index 129d8d0e..84b56871 100644 --- a/model/attributes/mcp/mcp__logging__message.json +++ b/model/attributes/mcp/mcp__logging__message.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "Tool execution completed successfully", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__method__name.json b/model/attributes/mcp/mcp__method__name.json index a46f3f20..759364d9 100644 --- a/model/attributes/mcp/mcp__method__name.json +++ b/model/attributes/mcp/mcp__method__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "tools/call", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__progress__current.json b/model/attributes/mcp/mcp__progress__current.json index 5b261c96..6c9c934c 100644 --- a/model/attributes/mcp/mcp__progress__current.json +++ b/model/attributes/mcp/mcp__progress__current.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 50, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__progress__message.json b/model/attributes/mcp/mcp__progress__message.json index d34572ae..371101ef 100644 --- a/model/attributes/mcp/mcp__progress__message.json +++ b/model/attributes/mcp/mcp__progress__message.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "Processing 50 of 100 items", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__progress__percentage.json b/model/attributes/mcp/mcp__progress__percentage.json index 2c38384b..ae908244 100644 --- a/model/attributes/mcp/mcp__progress__percentage.json +++ b/model/attributes/mcp/mcp__progress__percentage.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 50, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__progress__token.json b/model/attributes/mcp/mcp__progress__token.json index f127bee8..a812f435 100644 --- a/model/attributes/mcp/mcp__progress__token.json +++ b/model/attributes/mcp/mcp__progress__token.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "progress-token-123", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__progress__total.json b/model/attributes/mcp/mcp__progress__total.json index 9618f189..bb1daf4e 100644 --- a/model/attributes/mcp/mcp__progress__total.json +++ b/model/attributes/mcp/mcp__progress__total.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 100, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__prompt__name.json b/model/attributes/mcp/mcp__prompt__name.json index e2da5413..ad7639cb 100644 --- a/model/attributes/mcp/mcp__prompt__name.json +++ b/model/attributes/mcp/mcp__prompt__name.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "summarize", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__prompt__result__description.json b/model/attributes/mcp/mcp__prompt__result__description.json index 3f35181d..052870f7 100644 --- a/model/attributes/mcp/mcp__prompt__result__description.json +++ b/model/attributes/mcp/mcp__prompt__result__description.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "A summary of the requested information", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__prompt__result__message_content.json b/model/attributes/mcp/mcp__prompt__result__message_content.json index b29af5fe..700d2579 100644 --- a/model/attributes/mcp/mcp__prompt__result__message_content.json +++ b/model/attributes/mcp/mcp__prompt__result__message_content.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Please provide a summary of the document", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__prompt__result__message_count.json b/model/attributes/mcp/mcp__prompt__result__message_count.json index 36efd8ab..bb5065d3 100644 --- a/model/attributes/mcp/mcp__prompt__result__message_count.json +++ b/model/attributes/mcp/mcp__prompt__result__message_count.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 3, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__prompt__result__message_role.json b/model/attributes/mcp/mcp__prompt__result__message_role.json index 33dd66eb..de477556 100644 --- a/model/attributes/mcp/mcp__prompt__result__message_role.json +++ b/model/attributes/mcp/mcp__prompt__result__message_role.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "user", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__protocol__ready.json b/model/attributes/mcp/mcp__protocol__ready.json index 1f396756..d531b1f8 100644 --- a/model/attributes/mcp/mcp__protocol__ready.json +++ b/model/attributes/mcp/mcp__protocol__ready.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__protocol__version.json b/model/attributes/mcp/mcp__protocol__version.json index 56f156b5..b505412b 100644 --- a/model/attributes/mcp/mcp__protocol__version.json +++ b/model/attributes/mcp/mcp__protocol__version.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "2024-11-05", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__request__argument__[key].json b/model/attributes/mcp/mcp__request__argument__[key].json index 3fdc13f8..99fcbed8 100644 --- a/model/attributes/mcp/mcp__request__argument__[key].json +++ b/model/attributes/mcp/mcp__request__argument__[key].json @@ -10,6 +10,10 @@ "has_dynamic_suffix": true, "example": "mcp.request.argument.query='weather in Paris'", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [176] diff --git a/model/attributes/mcp/mcp__request__argument__name.json b/model/attributes/mcp/mcp__request__argument__name.json index 130695ac..8ee41a1d 100644 --- a/model/attributes/mcp/mcp__request__argument__name.json +++ b/model/attributes/mcp/mcp__request__argument__name.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "summarize", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__request__argument__uri.json b/model/attributes/mcp/mcp__request__argument__uri.json index d548a8a8..fe575ddd 100644 --- a/model/attributes/mcp/mcp__request__argument__uri.json +++ b/model/attributes/mcp/mcp__request__argument__uri.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "file:///path/to/resource", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__request__id.json b/model/attributes/mcp/mcp__request__id.json index c0e90c46..9ddf74f0 100644 --- a/model/attributes/mcp/mcp__request__id.json +++ b/model/attributes/mcp/mcp__request__id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "1", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__resource__protocol.json b/model/attributes/mcp/mcp__resource__protocol.json index 5e9af0cb..5d22f4c6 100644 --- a/model/attributes/mcp/mcp__resource__protocol.json +++ b/model/attributes/mcp/mcp__resource__protocol.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "file", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__resource__uri.json b/model/attributes/mcp/mcp__resource__uri.json index 2e56b404..0901868e 100644 --- a/model/attributes/mcp/mcp__resource__uri.json +++ b/model/attributes/mcp/mcp__resource__uri.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "file:///path/to/file.txt", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__server__name.json b/model/attributes/mcp/mcp__server__name.json index 5924cf07..57920a29 100644 --- a/model/attributes/mcp/mcp__server__name.json +++ b/model/attributes/mcp/mcp__server__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "sentry-mcp-server", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__server__title.json b/model/attributes/mcp/mcp__server__title.json index 084370ae..2acf8c67 100644 --- a/model/attributes/mcp/mcp__server__title.json +++ b/model/attributes/mcp/mcp__server__title.json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "Sentry MCP Server", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__server__version.json b/model/attributes/mcp/mcp__server__version.json index 7a9bac93..a09cc4b1 100644 --- a/model/attributes/mcp/mcp__server__version.json +++ b/model/attributes/mcp/mcp__server__version.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "0.1.0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__session__id.json b/model/attributes/mcp/mcp__session__id.json index 6bd3afe7..98e172ee 100644 --- a/model/attributes/mcp/mcp__session__id.json +++ b/model/attributes/mcp/mcp__session__id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "550e8400-e29b-41d4-a716-446655440000", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__tool__name.json b/model/attributes/mcp/mcp__tool__name.json index 5c38b4d0..f47cffef 100644 --- a/model/attributes/mcp/mcp__tool__name.json +++ b/model/attributes/mcp/mcp__tool__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "calculator", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__tool__result__content.json b/model/attributes/mcp/mcp__tool__result__content.json index dcc5d97f..61822e1d 100644 --- a/model/attributes/mcp/mcp__tool__result__content.json +++ b/model/attributes/mcp/mcp__tool__result__content.json @@ -10,6 +10,10 @@ "example": "{\"output\": \"rainy\", \"toolCallId\": \"1\"}", "alias": [], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__tool__result__content_count.json b/model/attributes/mcp/mcp__tool__result__content_count.json index 6b4f29f4..721b3944 100644 --- a/model/attributes/mcp/mcp__tool__result__content_count.json +++ b/model/attributes/mcp/mcp__tool__result__content_count.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__tool__result__is_error.json b/model/attributes/mcp/mcp__tool__result__is_error.json index d85ee21f..438bf786 100644 --- a/model/attributes/mcp/mcp__tool__result__is_error.json +++ b/model/attributes/mcp/mcp__tool__result__is_error.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": false, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__transport.json b/model/attributes/mcp/mcp__transport.json index 5f9b0ab3..8c27f7a8 100644 --- a/model/attributes/mcp/mcp__transport.json +++ b/model/attributes/mcp/mcp__transport.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "stdio", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mdc/mdc__[key].json b/model/attributes/mdc/mdc__[key].json index 759a394d..9d9a3d28 100644 --- a/model/attributes/mdc/mdc__[key].json +++ b/model/attributes/mdc/mdc__[key].json @@ -10,6 +10,10 @@ "example": "mdc.some_key='some_value'", "sdks": ["java", "java.logback", "java.jul", "java.log4j2"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [176] diff --git a/model/attributes/messaging/messaging__destination__connection.json b/model/attributes/messaging/messaging__destination__connection.json index 7e86e324..2acd4b3e 100644 --- a/model/attributes/messaging/messaging__destination__connection.json +++ b/model/attributes/messaging/messaging__destination__connection.json @@ -9,6 +9,10 @@ "example": "BestTopic", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/messaging/messaging__destination__name.json b/model/attributes/messaging/messaging__destination__name.json index 0b4c5718..141d4207 100644 --- a/model/attributes/messaging/messaging__destination__name.json +++ b/model/attributes/messaging/messaging__destination__name.json @@ -9,6 +9,10 @@ "example": "BestTopic", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/messaging/messaging__message__body__size.json b/model/attributes/messaging/messaging__message__body__size.json index 201f92f7..cb51a0a1 100644 --- a/model/attributes/messaging/messaging__message__body__size.json +++ b/model/attributes/messaging/messaging__message__body__size.json @@ -9,6 +9,10 @@ "example": 839, "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__message__envelope__size.json b/model/attributes/messaging/messaging__message__envelope__size.json index c4072fa0..a282a902 100644 --- a/model/attributes/messaging/messaging__message__envelope__size.json +++ b/model/attributes/messaging/messaging__message__envelope__size.json @@ -9,6 +9,10 @@ "example": 1045, "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__message__id.json b/model/attributes/messaging/messaging__message__id.json index 4f79d762..b4ae3222 100644 --- a/model/attributes/messaging/messaging__message__id.json +++ b/model/attributes/messaging/messaging__message__id.json @@ -9,6 +9,10 @@ "example": "f47ac10b58cc4372a5670e02b2c3d479", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/messaging/messaging__message__receive__latency.json b/model/attributes/messaging/messaging__message__receive__latency.json index 23ae839c..427d719d 100644 --- a/model/attributes/messaging/messaging__message__receive__latency.json +++ b/model/attributes/messaging/messaging__message__receive__latency.json @@ -9,6 +9,10 @@ "example": 1732847252, "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__message__retry__count.json b/model/attributes/messaging/messaging__message__retry__count.json index 675757c3..d5300647 100644 --- a/model/attributes/messaging/messaging__message__retry__count.json +++ b/model/attributes/messaging/messaging__message__retry__count.json @@ -9,6 +9,10 @@ "example": 2, "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__operation__type.json b/model/attributes/messaging/messaging__operation__type.json index 13b29d34..e8865238 100644 --- a/model/attributes/messaging/messaging__operation__type.json +++ b/model/attributes/messaging/messaging__operation__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "create", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [51, 127] diff --git a/model/attributes/messaging/messaging__system.json b/model/attributes/messaging/messaging__system.json index 0781abdf..fc67615c 100644 --- a/model/attributes/messaging/messaging__system.json +++ b/model/attributes/messaging/messaging__system.json @@ -9,6 +9,10 @@ "example": "activemq", "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/method.json b/model/attributes/method.json index 8f0efc3c..67a56291 100644 --- a/model/attributes/method.json +++ b/model/attributes/method.json @@ -14,6 +14,10 @@ "alias": ["http.request.method"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/navigation/navigation__type.json b/model/attributes/navigation/navigation__type.json index 329bd4e0..ea915a26 100644 --- a/model/attributes/navigation/navigation__type.json +++ b/model/attributes/navigation/navigation__type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "router.push", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/nel/nel__elapsed_time.json b/model/attributes/nel/nel__elapsed_time.json index f37a863b..63d6b977 100644 --- a/model/attributes/nel/nel__elapsed_time.json +++ b/model/attributes/nel/nel__elapsed_time.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 100, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/nel/nel__phase.json b/model/attributes/nel/nel__phase.json index 2b16ad42..52789d17 100644 --- a/model/attributes/nel/nel__phase.json +++ b/model/attributes/nel/nel__phase.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "application", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/nel/nel__referrer.json b/model/attributes/nel/nel__referrer.json index 03d1fc90..5bc0a634 100644 --- a/model/attributes/nel/nel__referrer.json +++ b/model/attributes/nel/nel__referrer.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "https://example.com/foo?bar=baz", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/nel/nel__sampling_function.json b/model/attributes/nel/nel__sampling_function.json index 997ee1df..9d3f80a2 100644 --- a/model/attributes/nel/nel__sampling_function.json +++ b/model/attributes/nel/nel__sampling_function.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 0.5, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/nel/nel__type.json b/model/attributes/nel/nel__type.json index 291b1ee1..1d4dc7a8 100644 --- a/model/attributes/nel/nel__type.json +++ b/model/attributes/nel/nel__type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "dns.unreachable", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/net/net__host__ip.json b/model/attributes/net/net__host__ip.json index c22fbd61..327cd532 100644 --- a/model/attributes/net/net__host__ip.json +++ b/model/attributes/net/net__host__ip.json @@ -13,6 +13,10 @@ }, "alias": ["network.local.address", "net.sock.host.addr"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__host__name.json b/model/attributes/net/net__host__name.json index 500b6b2e..0aa5f304 100644 --- a/model/attributes/net/net__host__name.json +++ b/model/attributes/net/net__host__name.json @@ -13,6 +13,10 @@ }, "alias": ["server.address", "http.server_name", "http.host"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__host__port.json b/model/attributes/net/net__host__port.json index 228da88e..5ae0e5c9 100644 --- a/model/attributes/net/net__host__port.json +++ b/model/attributes/net/net__host__port.json @@ -13,6 +13,10 @@ }, "alias": ["server.port"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__peer__ip.json b/model/attributes/net/net__peer__ip.json index 8e793235..fe71c1a0 100644 --- a/model/attributes/net/net__peer__ip.json +++ b/model/attributes/net/net__peer__ip.json @@ -13,6 +13,10 @@ }, "alias": ["network.peer.address", "net.sock.peer.addr"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__peer__name.json b/model/attributes/net/net__peer__name.json index c8fa6be0..80bffd06 100644 --- a/model/attributes/net/net__peer__name.json +++ b/model/attributes/net/net__peer__name.json @@ -13,6 +13,10 @@ "reason": "Deprecated, use server.address on client spans and client.address on server spans." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/net/net__peer__port.json b/model/attributes/net/net__peer__port.json index 5850d45c..6b162dd0 100644 --- a/model/attributes/net/net__peer__port.json +++ b/model/attributes/net/net__peer__port.json @@ -13,6 +13,10 @@ "reason": "Deprecated, use server.port on client spans and client.port on server spans." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__protocol__name.json b/model/attributes/net/net__protocol__name.json index 652fd6c7..d88ad517 100644 --- a/model/attributes/net/net__protocol__name.json +++ b/model/attributes/net/net__protocol__name.json @@ -13,6 +13,10 @@ }, "alias": ["network.protocol.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/net/net__protocol__version.json b/model/attributes/net/net__protocol__version.json index 685508d8..9c196038 100644 --- a/model/attributes/net/net__protocol__version.json +++ b/model/attributes/net/net__protocol__version.json @@ -13,6 +13,10 @@ }, "alias": ["network.protocol.version", "http.flavor"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__sock__family.json b/model/attributes/net/net__sock__family.json index 5da376ee..b8ac4445 100644 --- a/model/attributes/net/net__sock__family.json +++ b/model/attributes/net/net__sock__family.json @@ -13,6 +13,10 @@ "reason": "Deprecated, use network.transport and network.type." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/net/net__sock__host__addr.json b/model/attributes/net/net__sock__host__addr.json index 032549a8..cc2406aa 100644 --- a/model/attributes/net/net__sock__host__addr.json +++ b/model/attributes/net/net__sock__host__addr.json @@ -13,6 +13,10 @@ }, "alias": ["network.local.address", "net.host.ip"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__sock__host__port.json b/model/attributes/net/net__sock__host__port.json index 73629fde..69a790b2 100644 --- a/model/attributes/net/net__sock__host__port.json +++ b/model/attributes/net/net__sock__host__port.json @@ -13,6 +13,10 @@ }, "alias": ["network.local.port"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__sock__peer__addr.json b/model/attributes/net/net__sock__peer__addr.json index e15d4eb9..76c1c8be 100644 --- a/model/attributes/net/net__sock__peer__addr.json +++ b/model/attributes/net/net__sock__peer__addr.json @@ -13,6 +13,10 @@ }, "alias": ["network.peer.address", "net.peer.ip"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__sock__peer__name.json b/model/attributes/net/net__sock__peer__name.json index 9f4c66de..23611700 100644 --- a/model/attributes/net/net__sock__peer__name.json +++ b/model/attributes/net/net__sock__peer__name.json @@ -12,6 +12,10 @@ "reason": "Deprecated from OTEL, no replacement at this time" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 119, 127] diff --git a/model/attributes/net/net__sock__peer__port.json b/model/attributes/net/net__sock__peer__port.json index 6a2cf457..31e527a2 100644 --- a/model/attributes/net/net__sock__peer__port.json +++ b/model/attributes/net/net__sock__peer__port.json @@ -12,6 +12,10 @@ "replacement": "network.peer.port" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__transport.json b/model/attributes/net/net__transport.json index b7d9cb60..521b0657 100644 --- a/model/attributes/net/net__transport.json +++ b/model/attributes/net/net__transport.json @@ -13,6 +13,10 @@ }, "alias": ["network.transport"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/network/network__local__address.json b/model/attributes/network/network__local__address.json index ea5a923d..1866fb3f 100644 --- a/model/attributes/network/network__local__address.json +++ b/model/attributes/network/network__local__address.json @@ -9,6 +9,10 @@ "example": "10.1.2.80", "alias": ["net.host.ip", "net.sock.host.addr"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__local__port.json b/model/attributes/network/network__local__port.json index bcd4197c..12a99b44 100644 --- a/model/attributes/network/network__local__port.json +++ b/model/attributes/network/network__local__port.json @@ -9,6 +9,10 @@ "example": 65400, "alias": ["net.sock.host.port"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/network/network__peer__address.json b/model/attributes/network/network__peer__address.json index 82caaa5d..38d99d6d 100644 --- a/model/attributes/network/network__peer__address.json +++ b/model/attributes/network/network__peer__address.json @@ -9,6 +9,10 @@ "example": "10.1.2.80", "alias": ["net.peer.ip", "net.sock.peer.addr"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [108, 127] diff --git a/model/attributes/network/network__peer__port.json b/model/attributes/network/network__peer__port.json index 91020d66..6c474aee 100644 --- a/model/attributes/network/network__peer__port.json +++ b/model/attributes/network/network__peer__port.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 65400, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/network/network__protocol__name.json b/model/attributes/network/network__protocol__name.json index 9716141b..6e129670 100644 --- a/model/attributes/network/network__protocol__name.json +++ b/model/attributes/network/network__protocol__name.json @@ -9,6 +9,10 @@ "example": "http", "alias": ["net.protocol.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__protocol__version.json b/model/attributes/network/network__protocol__version.json index 2fea1134..48d05a90 100644 --- a/model/attributes/network/network__protocol__version.json +++ b/model/attributes/network/network__protocol__version.json @@ -9,6 +9,10 @@ "example": "1.1", "alias": ["http.flavor", "net.protocol.version"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__transport.json b/model/attributes/network/network__transport.json index 28eff03c..f8fe243d 100644 --- a/model/attributes/network/network__transport.json +++ b/model/attributes/network/network__transport.json @@ -9,6 +9,10 @@ "example": "tcp", "alias": ["net.transport"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__type.json b/model/attributes/network/network__type.json index b9d572fe..81f4e8a4 100644 --- a/model/attributes/network/network__type.json +++ b/model/attributes/network/network__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "ipv4", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__build_id.json b/model/attributes/os/os__build_id.json index 6f62aeb0..b4f387e5 100644 --- a/model/attributes/os/os__build_id.json +++ b/model/attributes/os/os__build_id.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "1234567890", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__description.json b/model/attributes/os/os__description.json index 77897e2b..12ba44ea 100644 --- a/model/attributes/os/os__description.json +++ b/model/attributes/os/os__description.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "Ubuntu 18.04.1 LTS", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__name.json b/model/attributes/os/os__name.json index b0cfb729..c75f7cfb 100644 --- a/model/attributes/os/os__name.json +++ b/model/attributes/os/os__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "Ubuntu", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__type.json b/model/attributes/os/os__type.json index 953b8183..63a32f50 100644 --- a/model/attributes/os/os__type.json +++ b/model/attributes/os/os__type.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "linux", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__version.json b/model/attributes/os/os__version.json index 3b213f19..0c094f45 100644 --- a/model/attributes/os/os__version.json +++ b/model/attributes/os/os__version.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "18.04.2", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__scope__name.json b/model/attributes/otel/otel__scope__name.json index 8566174a..1706bd8e 100644 --- a/model/attributes/otel/otel__scope__name.json +++ b/model/attributes/otel/otel__scope__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "io.opentelemetry.contrib.mongodb", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__scope__version.json b/model/attributes/otel/otel__scope__version.json index 87882243..8799949b 100644 --- a/model/attributes/otel/otel__scope__version.json +++ b/model/attributes/otel/otel__scope__version.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "2.4.5", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__status_code.json b/model/attributes/otel/otel__status_code.json index 6caa40a6..6a253a73 100644 --- a/model/attributes/otel/otel__status_code.json +++ b/model/attributes/otel/otel__status_code.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "OK", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__status_description.json b/model/attributes/otel/otel__status_description.json index 885217ed..b810ea47 100644 --- a/model/attributes/otel/otel__status_description.json +++ b/model/attributes/otel/otel__status_description.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "resource not found", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/params/params__[key].json b/model/attributes/params/params__[key].json index 6175f93e..5711c867 100644 --- a/model/attributes/params/params__[key].json +++ b/model/attributes/params/params__[key].json @@ -10,6 +10,10 @@ "example": "params.id='123'", "alias": ["url.path.parameter."], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/previous_route.json b/model/attributes/previous_route.json index d08844b8..0f803e26 100644 --- a/model/attributes/previous_route.json +++ b/model/attributes/previous_route.json @@ -9,6 +9,10 @@ "example": "HomeScreen", "sdks": ["javascript-reactnative"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [74] diff --git a/model/attributes/process/process__executable__name.json b/model/attributes/process/process__executable__name.json index 703a31b8..da93cbf9 100644 --- a/model/attributes/process/process__executable__name.json +++ b/model/attributes/process/process__executable__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "getsentry", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/process/process__pid.json b/model/attributes/process/process__pid.json index 2313b4b1..1009ca3c 100644 --- a/model/attributes/process/process__pid.json +++ b/model/attributes/process/process__pid.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 12345, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/process/process__runtime__description.json b/model/attributes/process/process__runtime__description.json index 854ca0b6..d68e6c93 100644 --- a/model/attributes/process/process__runtime__description.json +++ b/model/attributes/process/process__runtime__description.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "Eclipse OpenJ9 VM openj9-0.21.0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/process/process__runtime__name.json b/model/attributes/process/process__runtime__name.json index 6aa485bb..34625744 100644 --- a/model/attributes/process/process__runtime__name.json +++ b/model/attributes/process/process__runtime__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "node", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/process/process__runtime__version.json b/model/attributes/process/process__runtime__version.json index 22415f29..eda0a7ca 100644 --- a/model/attributes/process/process__runtime__version.json +++ b/model/attributes/process/process__runtime__version.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "18.04.2", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/query/query__[key].json b/model/attributes/query/query__[key].json index b16035f8..9aa35fbe 100644 --- a/model/attributes/query/query__[key].json +++ b/model/attributes/query/query__[key].json @@ -14,6 +14,10 @@ }, "example": "query.id='123'", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/release.json b/model/attributes/release.json index 1ba456e3..d7903985 100644 --- a/model/attributes/release.json +++ b/model/attributes/release.json @@ -13,6 +13,10 @@ }, "alias": ["sentry.release"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/remix/remix__action_form_data__[key].json b/model/attributes/remix/remix__action_form_data__[key].json index 8d84ec28..68a08d94 100644 --- a/model/attributes/remix/remix__action_form_data__[key].json +++ b/model/attributes/remix/remix__action_form_data__[key].json @@ -10,6 +10,10 @@ "example": "http.response.header.text='test'", "sdks": ["javascript-remix"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/replay_id.json b/model/attributes/replay_id.json index c8438e00..42113893 100644 --- a/model/attributes/replay_id.json +++ b/model/attributes/replay_id.json @@ -13,6 +13,10 @@ }, "alias": ["sentry.replay_id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/resource/resource__deployment__environment.json b/model/attributes/resource/resource__deployment__environment.json index a142f9dc..e94e39ab 100644 --- a/model/attributes/resource/resource__deployment__environment.json +++ b/model/attributes/resource/resource__deployment__environment.json @@ -14,7 +14,7 @@ "changelog": [ { "version": "next", - "prs": [266] + "prs": [266, 270] } ] } diff --git a/model/attributes/resource/resource__deployment__environment__name.json b/model/attributes/resource/resource__deployment__environment__name.json index eee79930..d62d529c 100644 --- a/model/attributes/resource/resource__deployment__environment__name.json +++ b/model/attributes/resource/resource__deployment__environment__name.json @@ -12,6 +12,10 @@ "replacement": "sentry.environment" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [196] diff --git a/model/attributes/resource/resource__render_blocking_status.json b/model/attributes/resource/resource__render_blocking_status.json index 884f8980..c728d009 100644 --- a/model/attributes/resource/resource__render_blocking_status.json +++ b/model/attributes/resource/resource__render_blocking_status.json @@ -9,6 +9,10 @@ "example": "non-blocking", "sdks": ["javascript-browser"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/route.json b/model/attributes/route.json index 7aff896b..ecba2a4d 100644 --- a/model/attributes/route.json +++ b/model/attributes/route.json @@ -14,6 +14,10 @@ "alias": ["http.route"], "sdks": ["php-laravel", "javascript-reactnative"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 74] diff --git a/model/attributes/rpc/rpc__grpc__status_code.json b/model/attributes/rpc/rpc__grpc__status_code.json index 088e53da..51c21f67 100644 --- a/model/attributes/rpc/rpc__grpc__status_code.json +++ b/model/attributes/rpc/rpc__grpc__status_code.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 2, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/rpc/rpc__service.json b/model/attributes/rpc/rpc__service.json index c8d98f98..f9447b19 100644 --- a/model/attributes/rpc/rpc__service.json +++ b/model/attributes/rpc/rpc__service.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "myService.BestService", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/sentry/sentry__action.json b/model/attributes/sentry/sentry__action.json index 751a365b..4854b26a 100644 --- a/model/attributes/sentry/sentry__action.json +++ b/model/attributes/sentry/sentry__action.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "SELECT", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__browser__name.json b/model/attributes/sentry/sentry__browser__name.json index eac40abe..85b7b4f3 100644 --- a/model/attributes/sentry/sentry__browser__name.json +++ b/model/attributes/sentry/sentry__browser__name.json @@ -13,6 +13,10 @@ }, "alias": ["browser.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [139] diff --git a/model/attributes/sentry/sentry__browser__version.json b/model/attributes/sentry/sentry__browser__version.json index 14ea089a..93479582 100644 --- a/model/attributes/sentry/sentry__browser__version.json +++ b/model/attributes/sentry/sentry__browser__version.json @@ -13,6 +13,10 @@ }, "alias": ["browser.version"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [139] diff --git a/model/attributes/sentry/sentry__cancellation_reason.json b/model/attributes/sentry/sentry__cancellation_reason.json index 77d40616..741ebf43 100644 --- a/model/attributes/sentry/sentry__cancellation_reason.json +++ b/model/attributes/sentry/sentry__cancellation_reason.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "document.hidden", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__category.json b/model/attributes/sentry/sentry__category.json index d388dcbf..ea070201 100644 --- a/model/attributes/sentry/sentry__category.json +++ b/model/attributes/sentry/sentry__category.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "db", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [218] diff --git a/model/attributes/sentry/sentry__client_sample_rate.json b/model/attributes/sentry/sentry__client_sample_rate.json index 7bb707c3..e78c5bf9 100644 --- a/model/attributes/sentry/sentry__client_sample_rate.json +++ b/model/attributes/sentry/sentry__client_sample_rate.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 0.5, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [102] diff --git a/model/attributes/sentry/sentry__description.json b/model/attributes/sentry/sentry__description.json index 96d52233..5fd199a7 100644 --- a/model/attributes/sentry/sentry__description.json +++ b/model/attributes/sentry/sentry__description.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "index view query", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [135] diff --git a/model/attributes/sentry/sentry__dist.json b/model/attributes/sentry/sentry__dist.json index 5fef2053..831f97a8 100644 --- a/model/attributes/sentry/sentry__dist.json +++ b/model/attributes/sentry/sentry__dist.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "1.0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__domain.json b/model/attributes/sentry/sentry__domain.json index 54d49713..f02d7970 100644 --- a/model/attributes/sentry/sentry__domain.json +++ b/model/attributes/sentry/sentry__domain.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "example.com", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__dsc__environment.json b/model/attributes/sentry/sentry__dsc__environment.json index db7d13dd..1f0d6c3f 100644 --- a/model/attributes/sentry/sentry__dsc__environment.json +++ b/model/attributes/sentry/sentry__dsc__environment.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "prod", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__public_key.json b/model/attributes/sentry/sentry__dsc__public_key.json index 6960141e..9912864d 100644 --- a/model/attributes/sentry/sentry__dsc__public_key.json +++ b/model/attributes/sentry/sentry__dsc__public_key.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "c51734c603c4430eb57cb0a5728a479d", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__release.json b/model/attributes/sentry/sentry__dsc__release.json index e82257d0..f9e04ff5 100644 --- a/model/attributes/sentry/sentry__dsc__release.json +++ b/model/attributes/sentry/sentry__dsc__release.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "frontend@e8211be71b214afab5b85de4b4c54be3714952bb", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__sample_rate.json b/model/attributes/sentry/sentry__dsc__sample_rate.json index 75094125..5cffa1b8 100644 --- a/model/attributes/sentry/sentry__dsc__sample_rate.json +++ b/model/attributes/sentry/sentry__dsc__sample_rate.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "1.0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__sampled.json b/model/attributes/sentry/sentry__dsc__sampled.json index ee3a40a9..4df6a1d7 100644 --- a/model/attributes/sentry/sentry__dsc__sampled.json +++ b/model/attributes/sentry/sentry__dsc__sampled.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__trace_id.json b/model/attributes/sentry/sentry__dsc__trace_id.json index 387c5592..3c69bf56 100644 --- a/model/attributes/sentry/sentry__dsc__trace_id.json +++ b/model/attributes/sentry/sentry__dsc__trace_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "047372980460430cbc78d9779df33a46", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__transaction.json b/model/attributes/sentry/sentry__dsc__transaction.json index 7f435fee..7969be66 100644 --- a/model/attributes/sentry/sentry__dsc__transaction.json +++ b/model/attributes/sentry/sentry__dsc__transaction.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "/issues/errors-outages/", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__environment.json b/model/attributes/sentry/sentry__environment.json index 8064e265..bbf89e44 100644 --- a/model/attributes/sentry/sentry__environment.json +++ b/model/attributes/sentry/sentry__environment.json @@ -9,6 +9,10 @@ "example": "production", "alias": ["environment"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__exclusive_time.json b/model/attributes/sentry/sentry__exclusive_time.json index 7b07edc8..ece05608 100644 --- a/model/attributes/sentry/sentry__exclusive_time.json +++ b/model/attributes/sentry/sentry__exclusive_time.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1234, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/sentry/sentry__graphql__operation.json b/model/attributes/sentry/sentry__graphql__operation.json index c3933274..8b08d0ca 100644 --- a/model/attributes/sentry/sentry__graphql__operation.json +++ b/model/attributes/sentry/sentry__graphql__operation.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "getUserById", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__group.json b/model/attributes/sentry/sentry__group.json index 87a3e2fa..2d546aa9 100644 --- a/model/attributes/sentry/sentry__group.json +++ b/model/attributes/sentry/sentry__group.json @@ -7,6 +7,10 @@ }, "is_in_otel": false, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__http__prefetch.json b/model/attributes/sentry/sentry__http__prefetch.json index 4c7d3033..5b00829b 100644 --- a/model/attributes/sentry/sentry__http__prefetch.json +++ b/model/attributes/sentry/sentry__http__prefetch.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__idle_span_finish_reason.json b/model/attributes/sentry/sentry__idle_span_finish_reason.json index 48ab96b4..bd6a1135 100644 --- a/model/attributes/sentry/sentry__idle_span_finish_reason.json +++ b/model/attributes/sentry/sentry__idle_span_finish_reason.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "idleTimeout", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__is_remote.json b/model/attributes/sentry/sentry__is_remote.json index 2222cdc1..68bf611f 100644 --- a/model/attributes/sentry/sentry__is_remote.json +++ b/model/attributes/sentry/sentry__is_remote.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__kind.json b/model/attributes/sentry/sentry__kind.json index 8b90b6fe..862b16b4 100644 --- a/model/attributes/sentry/sentry__kind.json +++ b/model/attributes/sentry/sentry__kind.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "server", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__log__sequence.json b/model/attributes/sentry/sentry__log__sequence.json deleted file mode 100644 index a49cb744..00000000 --- a/model/attributes/sentry/sentry__log__sequence.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "sentry.log.sequence", - "brief": "A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", - "type": "integer", - "pii": { - "key": "false" - }, - "is_in_otel": false, - "example": 42 -} diff --git a/model/attributes/sentry/sentry__message__parameter__[key].json b/model/attributes/sentry/sentry__message__parameter__[key].json index 6576722f..ed668291 100644 --- a/model/attributes/sentry/sentry__message__parameter__[key].json +++ b/model/attributes/sentry/sentry__message__parameter__[key].json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "sentry.message.parameter.0='123'", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [116] diff --git a/model/attributes/sentry/sentry__message__template.json b/model/attributes/sentry/sentry__message__template.json index e10ac39a..e20d8369 100644 --- a/model/attributes/sentry/sentry__message__template.json +++ b/model/attributes/sentry/sentry__message__template.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Hello, {name}!", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [116] diff --git a/model/attributes/sentry/sentry__module__[key].json b/model/attributes/sentry/sentry__module__[key].json index e6babf78..aec49e66 100644 --- a/model/attributes/sentry/sentry__module__[key].json +++ b/model/attributes/sentry/sentry__module__[key].json @@ -9,6 +9,10 @@ "is_in_otel": false, "example": "sentry.module.brianium/paratest='v7.7.0'", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/sentry/sentry__nextjs__ssr__function__route.json b/model/attributes/sentry/sentry__nextjs__ssr__function__route.json index ab5687cc..82d2c164 100644 --- a/model/attributes/sentry/sentry__nextjs__ssr__function__route.json +++ b/model/attributes/sentry/sentry__nextjs__ssr__function__route.json @@ -9,6 +9,10 @@ "example": "/posts/[id]/layout", "sdks": ["javascript"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [54, 106] diff --git a/model/attributes/sentry/sentry__nextjs__ssr__function__type.json b/model/attributes/sentry/sentry__nextjs__ssr__function__type.json index 9278bfd4..4ef66a46 100644 --- a/model/attributes/sentry/sentry__nextjs__ssr__function__type.json +++ b/model/attributes/sentry/sentry__nextjs__ssr__function__type.json @@ -9,6 +9,10 @@ "example": "generateMetadata", "sdks": ["javascript"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [54, 106] diff --git a/model/attributes/sentry/sentry__normalized_db_query.json b/model/attributes/sentry/sentry__normalized_db_query.json index dcccf218..e44c2830 100644 --- a/model/attributes/sentry/sentry__normalized_db_query.json +++ b/model/attributes/sentry/sentry__normalized_db_query.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "SELECT .. FROM sentry_project WHERE (project_id = %s)", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [194] diff --git a/model/attributes/sentry/sentry__normalized_db_query__hash.json b/model/attributes/sentry/sentry__normalized_db_query__hash.json index 2a78e84b..fa8c8d7b 100644 --- a/model/attributes/sentry/sentry__normalized_db_query__hash.json +++ b/model/attributes/sentry/sentry__normalized_db_query__hash.json @@ -7,6 +7,10 @@ }, "is_in_otel": false, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [200] diff --git a/model/attributes/sentry/sentry__normalized_description.json b/model/attributes/sentry/sentry__normalized_description.json index 4bfd47a3..258d3ae9 100644 --- a/model/attributes/sentry/sentry__normalized_description.json +++ b/model/attributes/sentry/sentry__normalized_description.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "SELECT .. FROM sentry_project WHERE (project_id = %s)", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__observed_timestamp_nanos.json b/model/attributes/sentry/sentry__observed_timestamp_nanos.json index 7541a0f8..275e2750 100644 --- a/model/attributes/sentry/sentry__observed_timestamp_nanos.json +++ b/model/attributes/sentry/sentry__observed_timestamp_nanos.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "1544712660300000000", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [174] diff --git a/model/attributes/sentry/sentry__op.json b/model/attributes/sentry/sentry__op.json index 4d2629bb..f8a6e3db 100644 --- a/model/attributes/sentry/sentry__op.json +++ b/model/attributes/sentry/sentry__op.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "http.client", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__origin.json b/model/attributes/sentry/sentry__origin.json index baf0977f..722ef0fd 100644 --- a/model/attributes/sentry/sentry__origin.json +++ b/model/attributes/sentry/sentry__origin.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "auto.http.otel.fastify", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [68] diff --git a/model/attributes/sentry/sentry__platform.json b/model/attributes/sentry/sentry__platform.json index 8065805d..b8f108e9 100644 --- a/model/attributes/sentry/sentry__platform.json +++ b/model/attributes/sentry/sentry__platform.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "php", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__profiler_id.json b/model/attributes/sentry/sentry__profiler_id.json index e084dd46..bd868f95 100644 --- a/model/attributes/sentry/sentry__profiler_id.json +++ b/model/attributes/sentry/sentry__profiler_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "18779b64dd35d1a538e7ce2dd2d3fad3", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [242] diff --git a/model/attributes/sentry/sentry__release.json b/model/attributes/sentry/sentry__release.json index a96df2af..06db55c0 100644 --- a/model/attributes/sentry/sentry__release.json +++ b/model/attributes/sentry/sentry__release.json @@ -9,6 +9,10 @@ "example": "7.0.0", "alias": ["service.version", "release"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__replay_id.json b/model/attributes/sentry/sentry__replay_id.json index 924295e4..656fc556 100644 --- a/model/attributes/sentry/sentry__replay_id.json +++ b/model/attributes/sentry/sentry__replay_id.json @@ -9,6 +9,10 @@ "example": "123e4567e89b12d3a456426614174000", "alias": ["replay_id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__replay_is_buffering.json b/model/attributes/sentry/sentry__replay_is_buffering.json index b8681c6e..7334bff4 100644 --- a/model/attributes/sentry/sentry__replay_is_buffering.json +++ b/model/attributes/sentry/sentry__replay_is_buffering.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__sdk__integrations.json b/model/attributes/sentry/sentry__sdk__integrations.json index 058532aa..7832a751 100644 --- a/model/attributes/sentry/sentry__sdk__integrations.json +++ b/model/attributes/sentry/sentry__sdk__integrations.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": ["InboundFilters", "FunctionToString", "BrowserApiErrors", "Breadcrumbs"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0", "prs": [42] diff --git a/model/attributes/sentry/sentry__sdk__name.json b/model/attributes/sentry/sentry__sdk__name.json index b8b89ace..4a385f6a 100644 --- a/model/attributes/sentry/sentry__sdk__name.json +++ b/model/attributes/sentry/sentry__sdk__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "@sentry/react", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__sdk__version.json b/model/attributes/sentry/sentry__sdk__version.json index d447ea00..3c3b573b 100644 --- a/model/attributes/sentry/sentry__sdk__version.json +++ b/model/attributes/sentry/sentry__sdk__version.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "7.0.0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__segment__id.json b/model/attributes/sentry/sentry__segment__id.json index 21f3868c..f1f14773 100644 --- a/model/attributes/sentry/sentry__segment__id.json +++ b/model/attributes/sentry/sentry__segment__id.json @@ -9,6 +9,10 @@ "example": "051581bf3cb55c13", "alias": ["sentry.segment_id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [107, 124] diff --git a/model/attributes/sentry/sentry__segment__name.json b/model/attributes/sentry/sentry__segment__name.json index 258337eb..3fcf050d 100644 --- a/model/attributes/sentry/sentry__segment__name.json +++ b/model/attributes/sentry/sentry__segment__name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "GET /user", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [104] diff --git a/model/attributes/sentry/sentry__segment_id.json b/model/attributes/sentry/sentry__segment_id.json index b939b902..cb59fc18 100644 --- a/model/attributes/sentry/sentry__segment_id.json +++ b/model/attributes/sentry/sentry__segment_id.json @@ -13,6 +13,10 @@ "replacement": "sentry.segment.id" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [124] diff --git a/model/attributes/sentry/sentry__server_sample_rate.json b/model/attributes/sentry/sentry__server_sample_rate.json index f2be53f2..24dc2335 100644 --- a/model/attributes/sentry/sentry__server_sample_rate.json +++ b/model/attributes/sentry/sentry__server_sample_rate.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 0.5, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [102] diff --git a/model/attributes/sentry/sentry__span__source.json b/model/attributes/sentry/sentry__span__source.json index 74a3633d..88a6cca4 100644 --- a/model/attributes/sentry/sentry__span__source.json +++ b/model/attributes/sentry/sentry__span__source.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "route", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [214] diff --git a/model/attributes/sentry/sentry__status__message.json b/model/attributes/sentry/sentry__status__message.json index ed199558..c487ac50 100644 --- a/model/attributes/sentry/sentry__status__message.json +++ b/model/attributes/sentry/sentry__status__message.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "foobar", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__status_code.json b/model/attributes/sentry/sentry__status_code.json index f25cfc71..fc3893a9 100644 --- a/model/attributes/sentry/sentry__status_code.json +++ b/model/attributes/sentry/sentry__status_code.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 200, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [223, 228] diff --git a/model/attributes/sentry/sentry__timestamp__sequence.json b/model/attributes/sentry/sentry__timestamp__sequence.json new file mode 100644 index 00000000..c86ec729 --- /dev/null +++ b/model/attributes/sentry/sentry__timestamp__sequence.json @@ -0,0 +1,10 @@ +{ + "key": "sentry.timestamp.sequence", + "brief": "A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.", + "type": "integer", + "pii": { + "key": "false" + }, + "is_in_otel": false, + "example": 0 +} diff --git a/model/attributes/sentry/sentry__trace__parent_span_id.json b/model/attributes/sentry/sentry__trace__parent_span_id.json index d81665fe..d3271851 100644 --- a/model/attributes/sentry/sentry__trace__parent_span_id.json +++ b/model/attributes/sentry/sentry__trace__parent_span_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "b0e6f15b45c36b12", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [116] diff --git a/model/attributes/sentry/sentry__transaction.json b/model/attributes/sentry/sentry__transaction.json index 2e9a8fc2..8e795a90 100644 --- a/model/attributes/sentry/sentry__transaction.json +++ b/model/attributes/sentry/sentry__transaction.json @@ -9,6 +9,10 @@ "example": "GET /", "alias": ["transaction"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/server/server__address.json b/model/attributes/server/server__address.json index 82787b05..9c99101c 100644 --- a/model/attributes/server/server__address.json +++ b/model/attributes/server/server__address.json @@ -9,6 +9,10 @@ "example": "example.com", "alias": ["http.server_name", "net.host.name", "http.host"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [108, 127] diff --git a/model/attributes/server/server__port.json b/model/attributes/server/server__port.json index 573d0b4d..3edea79f 100644 --- a/model/attributes/server/server__port.json +++ b/model/attributes/server/server__port.json @@ -9,6 +9,10 @@ "example": 1337, "alias": ["net.host.port"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/service/service__name.json b/model/attributes/service/service__name.json index f1fd3f7d..c6e45efa 100644 --- a/model/attributes/service/service__name.json +++ b/model/attributes/service/service__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "omegastar", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/service/service__version.json b/model/attributes/service/service__version.json index 869f42f4..f8a86b12 100644 --- a/model/attributes/service/service__version.json +++ b/model/attributes/service/service__version.json @@ -9,6 +9,10 @@ "example": "5.0.0", "alias": ["sentry.release"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/thread/thread__id.json b/model/attributes/thread/thread__id.json index d0c34ed6..3e4ff341 100644 --- a/model/attributes/thread/thread__id.json +++ b/model/attributes/thread/thread__id.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 56, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/thread/thread__name.json b/model/attributes/thread/thread__name.json index 3dad8f92..518eec71 100644 --- a/model/attributes/thread/thread__name.json +++ b/model/attributes/thread/thread__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "main", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/timber/timber__tag.json b/model/attributes/timber/timber__tag.json index 1e7e1b69..8b29529d 100644 --- a/model/attributes/timber/timber__tag.json +++ b/model/attributes/timber/timber__tag.json @@ -9,6 +9,10 @@ "example": "MyTag", "sdks": ["sentry.java.android"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.0", "prs": [183] diff --git a/model/attributes/transaction.json b/model/attributes/transaction.json index c5a910db..c16ae2e1 100644 --- a/model/attributes/transaction.json +++ b/model/attributes/transaction.json @@ -13,6 +13,10 @@ }, "alias": ["sentry.transaction"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/type.json b/model/attributes/type.json index 61ad3e50..a0e1b9ce 100644 --- a/model/attributes/type.json +++ b/model/attributes/type.json @@ -9,6 +9,10 @@ "example": "fetch", "sdks": ["javascript-browser", "javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/ui/ui__component_name.json b/model/attributes/ui/ui__component_name.json index ead755c3..8d65f509 100644 --- a/model/attributes/ui/ui__component_name.json +++ b/model/attributes/ui/ui__component_name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "HomeButton", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/ui/ui__contributes_to_ttfd.json b/model/attributes/ui/ui__contributes_to_ttfd.json index b24fc4f8..93b09ac5 100644 --- a/model/attributes/ui/ui__contributes_to_ttfd.json +++ b/model/attributes/ui/ui__contributes_to_ttfd.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/ui/ui__contributes_to_ttid.json b/model/attributes/ui/ui__contributes_to_ttid.json index 8187fccf..73315062 100644 --- a/model/attributes/ui/ui__contributes_to_ttid.json +++ b/model/attributes/ui/ui__contributes_to_ttid.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": true, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/url.json b/model/attributes/url.json index 132ce9bd..516963b6 100644 --- a/model/attributes/url.json +++ b/model/attributes/url.json @@ -14,6 +14,10 @@ "alias": ["url.full", "http.url"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/url/url__domain.json b/model/attributes/url/url__domain.json index 7be362d3..d06b72e9 100644 --- a/model/attributes/url/url__domain.json +++ b/model/attributes/url/url__domain.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "example.com", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/url/url__fragment.json b/model/attributes/url/url__fragment.json index c839a88a..46e59ed7 100644 --- a/model/attributes/url/url__fragment.json +++ b/model/attributes/url/url__fragment.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "details", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/url/url__full.json b/model/attributes/url/url__full.json index f0e6cc1d..920db180 100644 --- a/model/attributes/url/url__full.json +++ b/model/attributes/url/url__full.json @@ -9,6 +9,10 @@ "example": "https://example.com/test?foo=bar#buzz", "alias": ["http.url", "url"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [108] diff --git a/model/attributes/url/url__path.json b/model/attributes/url/url__path.json index 9b53f873..a73425fd 100644 --- a/model/attributes/url/url__path.json +++ b/model/attributes/url/url__path.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "/foo", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/url/url__path__parameter__[key].json b/model/attributes/url/url__path__parameter__[key].json index f2f9bfad..6ed7d8ca 100644 --- a/model/attributes/url/url__path__parameter__[key].json +++ b/model/attributes/url/url__path__parameter__[key].json @@ -10,6 +10,10 @@ "example": "url.path.parameter.id='123'", "alias": ["params."], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/url/url__port.json b/model/attributes/url/url__port.json index 815807dd..24cfe6cc 100644 --- a/model/attributes/url/url__port.json +++ b/model/attributes/url/url__port.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": 1337, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/url/url__query.json b/model/attributes/url/url__query.json index 26220b36..48044e5e 100644 --- a/model/attributes/url/url__query.json +++ b/model/attributes/url/url__query.json @@ -9,6 +9,10 @@ "is_in_otel": true, "example": "foo=bar&bar=baz", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/url/url__scheme.json b/model/attributes/url/url__scheme.json index 5ddb7777..0419917c 100644 --- a/model/attributes/url/url__scheme.json +++ b/model/attributes/url/url__scheme.json @@ -9,6 +9,10 @@ "example": "https", "alias": ["http.scheme"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/url/url__template.json b/model/attributes/url/url__template.json index 5ffa0fce..83e6d918 100644 --- a/model/attributes/url/url__template.json +++ b/model/attributes/url/url__template.json @@ -9,6 +9,10 @@ "example": "/users/:id", "alias": ["http.route"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/user/user__email.json b/model/attributes/user/user__email.json index 43c712ae..16dc0da8 100644 --- a/model/attributes/user/user__email.json +++ b/model/attributes/user/user__email.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "test@example.com", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__full_name.json b/model/attributes/user/user__full_name.json index b10f3994..1091e883 100644 --- a/model/attributes/user/user__full_name.json +++ b/model/attributes/user/user__full_name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "John Smith", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__city.json b/model/attributes/user/user__geo__city.json index 2c366655..6637939b 100644 --- a/model/attributes/user/user__geo__city.json +++ b/model/attributes/user/user__geo__city.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Toronto", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__country_code.json b/model/attributes/user/user__geo__country_code.json index f0f8be56..927a7aeb 100644 --- a/model/attributes/user/user__geo__country_code.json +++ b/model/attributes/user/user__geo__country_code.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "CA", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__region.json b/model/attributes/user/user__geo__region.json index f75fbfa4..01609c86 100644 --- a/model/attributes/user/user__geo__region.json +++ b/model/attributes/user/user__geo__region.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Canada", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__subdivision.json b/model/attributes/user/user__geo__subdivision.json index 3d24a10e..37baf7bd 100644 --- a/model/attributes/user/user__geo__subdivision.json +++ b/model/attributes/user/user__geo__subdivision.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "Ontario", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__hash.json b/model/attributes/user/user__hash.json index 138ebb71..49cb8ad8 100644 --- a/model/attributes/user/user__hash.json +++ b/model/attributes/user/user__hash.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__id.json b/model/attributes/user/user__id.json index 05b1f8ce..7d052b10 100644 --- a/model/attributes/user/user__id.json +++ b/model/attributes/user/user__id.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "S-1-5-21-202424912787-2692429404-2351956786-1000", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__ip_address.json b/model/attributes/user/user__ip_address.json index a19b9177..d86839bb 100644 --- a/model/attributes/user/user__ip_address.json +++ b/model/attributes/user/user__ip_address.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "192.168.1.1", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [75] diff --git a/model/attributes/user/user__name.json b/model/attributes/user/user__name.json index 3d55a5a8..fe1fe773 100644 --- a/model/attributes/user/user__name.json +++ b/model/attributes/user/user__name.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": "j.smith", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__roles.json b/model/attributes/user/user__roles.json index 9f6c6fdb..715722bf 100644 --- a/model/attributes/user/user__roles.json +++ b/model/attributes/user/user__roles.json @@ -8,6 +8,10 @@ "is_in_otel": true, "example": ["admin", "editor"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.0.0" } diff --git a/model/attributes/user_agent/user_agent__original.json b/model/attributes/user_agent/user_agent__original.json index 63ab13f2..3c42144d 100644 --- a/model/attributes/user_agent/user_agent__original.json +++ b/model/attributes/user_agent/user_agent__original.json @@ -9,6 +9,10 @@ "example": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1", "alias": ["http.user_agent"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/vercel/vercel__branch.json b/model/attributes/vercel/vercel__branch.json index 6c1219e1..b9a5f443 100644 --- a/model/attributes/vercel/vercel__branch.json +++ b/model/attributes/vercel/vercel__branch.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "main", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__build_id.json b/model/attributes/vercel/vercel__build_id.json index 7b549743..3f78fa13 100644 --- a/model/attributes/vercel/vercel__build_id.json +++ b/model/attributes/vercel/vercel__build_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "bld_cotnkcr76", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__deployment_id.json b/model/attributes/vercel/vercel__deployment_id.json index 156863db..d700d6e3 100644 --- a/model/attributes/vercel/vercel__deployment_id.json +++ b/model/attributes/vercel/vercel__deployment_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "dpl_233NRGRjVZX1caZrXWtz5g1TAksD", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__destination.json b/model/attributes/vercel/vercel__destination.json index 6882b736..84d3dc4e 100644 --- a/model/attributes/vercel/vercel__destination.json +++ b/model/attributes/vercel/vercel__destination.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "https://vitals.vercel-insights.com/v1", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__edge_type.json b/model/attributes/vercel/vercel__edge_type.json index 5c10c900..0fea4fa5 100644 --- a/model/attributes/vercel/vercel__edge_type.json +++ b/model/attributes/vercel/vercel__edge_type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "edge-function", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__entrypoint.json b/model/attributes/vercel/vercel__entrypoint.json index 21376a39..d770defb 100644 --- a/model/attributes/vercel/vercel__entrypoint.json +++ b/model/attributes/vercel/vercel__entrypoint.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "api/index.js", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__execution_region.json b/model/attributes/vercel/vercel__execution_region.json index 6a7d43a6..92beeadb 100644 --- a/model/attributes/vercel/vercel__execution_region.json +++ b/model/attributes/vercel/vercel__execution_region.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "sfo1", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__id.json b/model/attributes/vercel/vercel__id.json index d67429a3..ded96026 100644 --- a/model/attributes/vercel/vercel__id.json +++ b/model/attributes/vercel/vercel__id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "1573817187330377061717300000", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__ja3_digest.json b/model/attributes/vercel/vercel__ja3_digest.json index 2435a1d1..20f37cd9 100644 --- a/model/attributes/vercel/vercel__ja3_digest.json +++ b/model/attributes/vercel/vercel__ja3_digest.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__ja4_digest.json b/model/attributes/vercel/vercel__ja4_digest.json index ee02e067..1b017b38 100644 --- a/model/attributes/vercel/vercel__ja4_digest.json +++ b/model/attributes/vercel/vercel__ja4_digest.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "t13d1516h2_8daaf6152771_02713d6af862", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__log_type.json b/model/attributes/vercel/vercel__log_type.json index 05a72d49..cac03426 100644 --- a/model/attributes/vercel/vercel__log_type.json +++ b/model/attributes/vercel/vercel__log_type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "stdout", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__project_id.json b/model/attributes/vercel/vercel__project_id.json index 632d19fa..e0e6230d 100644 --- a/model/attributes/vercel/vercel__project_id.json +++ b/model/attributes/vercel/vercel__project_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "gdufoJxB6b9b1fEqr1jUtFkyavUU", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__project_name.json b/model/attributes/vercel/vercel__project_name.json index 5776e7a5..84a7ba35 100644 --- a/model/attributes/vercel/vercel__project_name.json +++ b/model/attributes/vercel/vercel__project_name.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "my-app", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__cache_id.json b/model/attributes/vercel/vercel__proxy__cache_id.json index 4efd62fc..1585f6cb 100644 --- a/model/attributes/vercel/vercel__proxy__cache_id.json +++ b/model/attributes/vercel/vercel__proxy__cache_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "pdx1::v8g4b-1744143786684-93dafbc0f70d", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__client_ip.json b/model/attributes/vercel/vercel__proxy__client_ip.json index 37cc3d00..c7b6b186 100644 --- a/model/attributes/vercel/vercel__proxy__client_ip.json +++ b/model/attributes/vercel/vercel__proxy__client_ip.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "120.75.16.101", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__host.json b/model/attributes/vercel/vercel__proxy__host.json index 62c8bdf9..8edac25d 100644 --- a/model/attributes/vercel/vercel__proxy__host.json +++ b/model/attributes/vercel/vercel__proxy__host.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "test.vercel.app", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__lambda_region.json b/model/attributes/vercel/vercel__proxy__lambda_region.json index e986c7aa..0b5fc786 100644 --- a/model/attributes/vercel/vercel__proxy__lambda_region.json +++ b/model/attributes/vercel/vercel__proxy__lambda_region.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "sfo1", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__method.json b/model/attributes/vercel/vercel__proxy__method.json index 85cee2d8..186331ce 100644 --- a/model/attributes/vercel/vercel__proxy__method.json +++ b/model/attributes/vercel/vercel__proxy__method.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "GET", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__path.json b/model/attributes/vercel/vercel__proxy__path.json index 3d9b47e6..2a183202 100644 --- a/model/attributes/vercel/vercel__proxy__path.json +++ b/model/attributes/vercel/vercel__proxy__path.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "/dynamic/some-value.json?route=some-value", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__path_type.json b/model/attributes/vercel/vercel__proxy__path_type.json index 3a999169..f81374d1 100644 --- a/model/attributes/vercel/vercel__proxy__path_type.json +++ b/model/attributes/vercel/vercel__proxy__path_type.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "func", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__path_type_variant.json b/model/attributes/vercel/vercel__proxy__path_type_variant.json index 4c9c7157..293f56b3 100644 --- a/model/attributes/vercel/vercel__proxy__path_type_variant.json +++ b/model/attributes/vercel/vercel__proxy__path_type_variant.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "api", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__referer.json b/model/attributes/vercel/vercel__proxy__referer.json index cfc06280..c6ba387e 100644 --- a/model/attributes/vercel/vercel__proxy__referer.json +++ b/model/attributes/vercel/vercel__proxy__referer.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "*.vercel.app", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__region.json b/model/attributes/vercel/vercel__proxy__region.json index 41bd5e65..00cbccb0 100644 --- a/model/attributes/vercel/vercel__proxy__region.json +++ b/model/attributes/vercel/vercel__proxy__region.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "sfo1", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__response_byte_size.json b/model/attributes/vercel/vercel__proxy__response_byte_size.json index d66d702c..4fc6f4aa 100644 --- a/model/attributes/vercel/vercel__proxy__response_byte_size.json +++ b/model/attributes/vercel/vercel__proxy__response_byte_size.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1024, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/vercel/vercel__proxy__scheme.json b/model/attributes/vercel/vercel__proxy__scheme.json index 2a205f4d..d159a949 100644 --- a/model/attributes/vercel/vercel__proxy__scheme.json +++ b/model/attributes/vercel/vercel__proxy__scheme.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "https", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__status_code.json b/model/attributes/vercel/vercel__proxy__status_code.json index 156ab31e..21928f23 100644 --- a/model/attributes/vercel/vercel__proxy__status_code.json +++ b/model/attributes/vercel/vercel__proxy__status_code.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 200, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/vercel/vercel__proxy__timestamp.json b/model/attributes/vercel/vercel__proxy__timestamp.json index aeb94efc..aa1239cb 100644 --- a/model/attributes/vercel/vercel__proxy__timestamp.json +++ b/model/attributes/vercel/vercel__proxy__timestamp.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 1573817250172, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/vercel/vercel__proxy__user_agent.json b/model/attributes/vercel/vercel__proxy__user_agent.json index b51234e9..2f3b514d 100644 --- a/model/attributes/vercel/vercel__proxy__user_agent.json +++ b/model/attributes/vercel/vercel__proxy__user_agent.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": ["Mozilla/5.0..."], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__vercel_cache.json b/model/attributes/vercel/vercel__proxy__vercel_cache.json index 2fb485ba..b334b713 100644 --- a/model/attributes/vercel/vercel__proxy__vercel_cache.json +++ b/model/attributes/vercel/vercel__proxy__vercel_cache.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "REVALIDATED", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__vercel_id.json b/model/attributes/vercel/vercel__proxy__vercel_id.json index 04380f0a..f4a8566f 100644 --- a/model/attributes/vercel/vercel__proxy__vercel_id.json +++ b/model/attributes/vercel/vercel__proxy__vercel_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "sfo1::abc123", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__waf_action.json b/model/attributes/vercel/vercel__proxy__waf_action.json index 94eaeb3f..39b814ef 100644 --- a/model/attributes/vercel/vercel__proxy__waf_action.json +++ b/model/attributes/vercel/vercel__proxy__waf_action.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "deny", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__waf_rule_id.json b/model/attributes/vercel/vercel__proxy__waf_rule_id.json index eff95453..858bbf32 100644 --- a/model/attributes/vercel/vercel__proxy__waf_rule_id.json +++ b/model/attributes/vercel/vercel__proxy__waf_rule_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "rule_gAHz8jtSB1Gy", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__request_id.json b/model/attributes/vercel/vercel__request_id.json index 2f704f94..b84b0e40 100644 --- a/model/attributes/vercel/vercel__request_id.json +++ b/model/attributes/vercel/vercel__request_id.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "643af4e3-975a-4cc7-9e7a-1eda11539d90", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__source.json b/model/attributes/vercel/vercel__source.json index e32333ff..90a40317 100644 --- a/model/attributes/vercel/vercel__source.json +++ b/model/attributes/vercel/vercel__source.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": "build", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__status_code.json b/model/attributes/vercel/vercel__status_code.json index 7fcc1691..4e293184 100644 --- a/model/attributes/vercel/vercel__status_code.json +++ b/model/attributes/vercel/vercel__status_code.json @@ -8,6 +8,10 @@ "is_in_otel": false, "example": 200, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] diff --git a/python/src/sentry_conventions/attributes.py b/python/src/sentry_conventions/attributes.py index dacd1cf0..a2e956f8 100644 --- a/python/src/sentry_conventions/attributes.py +++ b/python/src/sentry_conventions/attributes.py @@ -3912,16 +3912,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: "server" """ - # Path: model/attributes/sentry/sentry__log__sequence.json - SENTRY_LOG_SEQUENCE: Literal["sentry.log.sequence"] = "sentry.log.sequence" - """A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. - - Type: int - Contains PII: false - Defined in OTEL: No - Example: 42 - """ - # Path: model/attributes/sentry/sentry__message__parameter__[key].json SENTRY_MESSAGE_PARAMETER_KEY: Literal["sentry.message.parameter."] = ( "sentry.message.parameter." @@ -4209,6 +4199,18 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: 200 """ + # Path: model/attributes/sentry/sentry__timestamp__sequence.json + SENTRY_TIMESTAMP_SEQUENCE: Literal["sentry.timestamp.sequence"] = ( + "sentry.timestamp.sequence" + ) + """A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one. + + Type: int + Contains PII: false + Defined in OTEL: No + Example: 0 + """ + # Path: model/attributes/sentry/sentry__trace__parent_span_id.json SENTRY_TRACE_PARENT_SPAN_ID: Literal["sentry.trace.parent_span_id"] = ( "sentry.trace.parent_span_id" @@ -4965,7 +4967,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["Citation 1", "Citation 2"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -4979,6 +4981,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.usage.output_tokens", "gen_ai.usage.completion_tokens"], sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57, 61]), ChangelogEntry(version="0.0.0"), @@ -4992,7 +4995,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["document1.txt", "document2.pdf"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5005,6 +5008,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.response.finish_reason"), aliases=["gen_ai.response.finish_reasons"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108, 127]), ], ), @@ -5017,6 +5021,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.frequency_penalty"), aliases=["gen_ai.request.frequency_penalty"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5030,6 +5035,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.name"), aliases=["gen_ai.tool.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], ), @@ -5042,6 +5048,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.response.id"), aliases=["gen_ai.response.id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108, 127]), ], ), @@ -5055,6 +5062,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.request.messages"], sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[65, 119]), ChangelogEntry(version="0.0.0"), ], @@ -5067,7 +5075,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=False, deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5079,7 +5087,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='{"user_id": 123, "session_id": "abc123"}', deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55, 127]), ], ), @@ -5092,6 +5100,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.provider.name"), aliases=["gen_ai.provider.name", "gen_ai.system"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[253]), ChangelogEntry(version="0.1.0", prs=[57, 61, 108, 127]), ], @@ -5106,6 +5115,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.response.model"], sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5119,6 +5129,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.pipeline.name"), aliases=["gen_ai.pipeline.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[53, 76, 108, 127]), ], ), @@ -5131,7 +5142,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.system_instructions"), aliases=["gen_ai.system_instructions"], changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5144,6 +5155,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.presence_penalty"), aliases=["gen_ai.request.presence_penalty"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5158,6 +5170,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.usage.prompt_tokens", "gen_ai.usage.input_tokens"], sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57, 61]), ChangelogEntry(version="0.0.0"), @@ -5171,7 +5184,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=True, deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5183,7 +5196,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="json_object", deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55, 127]), ], ), @@ -5196,6 +5209,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.response.text"), sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[65, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5208,7 +5222,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["climate change effects", "renewable energy"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5220,7 +5234,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["search_result_1, search_result_2"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5233,6 +5247,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.seed"), aliases=["gen_ai.request.seed"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108, 127]), ], ), @@ -5246,6 +5261,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.response.streaming"], sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[76, 108]), ChangelogEntry(version="0.0.0"), ], @@ -5258,7 +5274,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='{"executed_function": "add_integers"}', deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55, 127]), ], ), @@ -5271,6 +5287,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.temperature"), aliases=["gen_ai.request.temperature"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5284,7 +5301,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.input.messages"), aliases=["gen_ai.input.messages"], changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5296,6 +5313,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["tool_call_1", "tool_call_2"], deprecation=DeprecationInfo(replacement="gen_ai.response.tool_calls"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 65]), ], ), @@ -5307,6 +5325,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["function_1", "function_2"], deprecation=DeprecationInfo(replacement="gen_ai.request.available_tools"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 65, 127]), ], ), @@ -5319,6 +5338,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.top_k"), aliases=["gen_ai.request.top_k"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5332,6 +5352,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.top_p"), aliases=["gen_ai.request.top_p"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5345,7 +5366,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.cost.total_tokens"), aliases=["gen_ai.cost.total_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[53]), ], @@ -5360,6 +5381,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.usage.total_tokens"], sdks=["python"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57, 61, 108]), ChangelogEntry(version="0.0.0"), @@ -5373,7 +5395,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["Token limit exceeded"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5384,6 +5406,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="cold", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5395,6 +5418,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5406,6 +5430,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Chrome", aliases=["sentry.browser.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127, 139]), ChangelogEntry(version="0.0.0"), ], @@ -5417,6 +5442,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="network-error", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -5428,6 +5454,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Window.requestAnimationFrame", sdks=["browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5440,6 +5467,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="event-listener", sdks=["browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5452,6 +5480,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=678, sdks=["browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5464,6 +5493,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="120.0.6099.130", aliases=["sentry.browser.version"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[59, 127, 139]), ], ), @@ -5475,6 +5505,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=True, sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5485,6 +5516,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=58, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5497,6 +5529,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["my-cache-key", "my-other-cache-key"], sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5508,6 +5541,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="get", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5520,6 +5554,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=120, sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5532,6 +5567,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="mail", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5544,6 +5580,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="example.com", aliases=["http.client_ip"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[106, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5555,6 +5592,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=5432, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5567,6 +5605,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=543, sdks=["javascript-cloudflare"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5579,6 +5618,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=12, sdks=["javascript-cloudflare"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5591,6 +5631,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=12, sdks=["javascript-cloudflare"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5603,6 +5644,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/app/myapplication/http/handler/server.py", aliases=["code.filepath"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5615,6 +5657,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="code.file.path"), aliases=["code.file.path"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -5628,6 +5671,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="code.function.name"), aliases=["code.function.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 74]), ChangelogEntry(version="0.0.0"), ], @@ -5640,6 +5684,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="server_request", aliases=["code.function"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5652,6 +5697,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=42, aliases=["code.lineno"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5665,6 +5711,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="code.line.number"), aliases=["code.line.number"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61, 108]), ChangelogEntry(version="0.0.0"), @@ -5681,6 +5728,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="code.function.name should include the namespace.", ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 74]), ChangelogEntry(version="0.0.0"), ], @@ -5692,6 +5740,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="GregorianCalendar", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5702,6 +5751,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="English (United States)", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5712,6 +5762,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5722,6 +5773,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="en-US", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5732,6 +5784,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Europe/Vienna", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5742,6 +5795,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="users", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[106, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5755,6 +5809,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="db.namespace"), aliases=["db.namespace"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5767,6 +5822,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="customers", aliases=["db.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5782,6 +5838,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["db.operation.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[199]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), @@ -5795,6 +5852,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="SELECT", aliases=["db.operation"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5807,6 +5865,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="db.query.parameter.foo='123'", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103, 127]), ], ), @@ -5817,6 +5876,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="SELECT users;", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[208]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), @@ -5830,6 +5890,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="SELECT * FROM users WHERE id = $1", aliases=["db.statement"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[208]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), @@ -5843,6 +5904,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="my-redis-instance", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5855,6 +5917,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["test", "*"], sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5870,6 +5933,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -5885,6 +5949,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["db.query.text"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[199]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), @@ -5901,6 +5966,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["db.system.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[199, 224]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), @@ -5914,6 +5980,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="postgresql", aliases=["db.system"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5925,6 +5992,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="fancy_user", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5935,6 +6003,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Apple", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116, 127]), ], ), @@ -5945,6 +6014,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="iPhone", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116, 127]), ], ), @@ -5955,6 +6025,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="iPhone 15 Pro Max", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116, 127]), ], ), @@ -5967,6 +6038,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.environment"), aliases=["sentry.environment"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5978,6 +6050,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="timeout", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5989,6 +6062,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1234567890, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[101]), ], ), @@ -5999,6 +6073,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Process Payload", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[101, 127]), ], ), @@ -6009,6 +6084,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6019,6 +6095,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="ENOENT: no such file or directory", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6030,6 +6107,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example='Exception in thread "main" java.lang.RuntimeException: Test exception\n at com.example.GenerateTrace.methodB(GenerateTrace.java:13)\n at com.example.GenerateTrace.methodA(GenerateTrace.java:9)\n at com.example.GenerateTrace.main(GenerateTrace.java:5)', changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6041,6 +6119,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="OSError", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6052,6 +6131,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6062,6 +6142,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="0/5 * * * ? *", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6073,6 +6154,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="2020-01-23T13:47:06Z", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6084,6 +6166,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="timer", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6096,6 +6179,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="flag.evaluation.is_new_ui=true", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -6106,6 +6190,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=5, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6117,6 +6202,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=3, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6128,6 +6214,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6139,6 +6226,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=60, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6155,6 +6243,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), sdks=["javascript-node"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6166,6 +6255,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="ResearchAssistant", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6176,6 +6266,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="conv_5j66UpCpwteGg4YSxUnt7lPY", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[250]), ], ), @@ -6186,6 +6277,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=123.45, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ], @@ -6197,6 +6289,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=123.45, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ], @@ -6209,7 +6302,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=12.34, aliases=["ai.total_cost"], changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[126]), ], @@ -6221,6 +6314,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="What's the weather in Paris?", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[195]), ], ), @@ -6232,7 +6326,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='[{"role": "user", "parts": [{"type": "text", "content": "Weather in Paris?"}]}, {"role": "assistant", "parts": [{"type": "tool_call", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "name": "get_weather", "arguments": {"location": "Paris"}}]}, {"role": "tool", "parts": [{"type": "tool_call_response", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "result": "rainy, 57°F"}]}]', aliases=["ai.texts"], changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6243,6 +6337,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="chat", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[225]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], @@ -6254,6 +6349,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="tool", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[257]), ChangelogEntry(version="0.1.0", prs=[113, 127]), ], @@ -6265,6 +6361,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example='[{"role": "assistant", "parts": [{"type": "text", "content": "The weather in Paris is currently rainy with a temperature of 57°F."}], "finish_reason": "stop"}]', changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6276,6 +6373,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Autofix Pipeline", aliases=["ai.pipeline.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[76, 127]), ], ), @@ -6289,6 +6387,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated from OTEL, use gen_ai.input.messages with the new format instead." ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[74, 108, 119]), ChangelogEntry(version="0.0.0"), ], @@ -6301,6 +6400,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="openai", aliases=["ai.model.provider", "gen_ai.system"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[253]), ], ), @@ -6312,6 +6412,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='[{"name": "get_weather", "description": "Get the weather for a given location"}, {"name": "get_news", "description": "Get the news for a given topic"}]', deprecation=DeprecationInfo(replacement="gen_ai.tool.definitions"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 127]), ], @@ -6324,6 +6425,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.5, aliases=["ai.frequency_penalty"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6335,6 +6437,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=2048, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[62]), ], @@ -6348,6 +6451,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.input.messages"), aliases=["ai.input_messages"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 74, 108, 119, 122]), ], @@ -6359,6 +6463,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="gpt-4-turbo-preview", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6370,6 +6475,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.5, aliases=["ai.presence_penalty"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6382,6 +6488,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="1234567890", aliases=["ai.seed"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6393,6 +6500,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.1, aliases=["ai.temperature"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6405,6 +6513,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=35, aliases=["ai.top_k"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6417,6 +6526,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.7, aliases=["ai.top_p"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6429,6 +6539,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="COMPLETE", aliases=["ai.finish_reason"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6440,6 +6551,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="gen_123abc", aliases=["ai.generation_id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6451,6 +6563,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="gpt-4", aliases=["ai.model_id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6463,6 +6576,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=True, aliases=["ai.streaming"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[76]), ], ), @@ -6474,6 +6588,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='["The weather in Paris is rainy and overcast, with temperatures around 57°F", "The weather in London is sunny and warm, with temperatures around 65°F"]', deprecation=DeprecationInfo(replacement="gen_ai.output.messages"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], @@ -6485,6 +6600,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.6853435, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[227]), ], ), @@ -6495,6 +6611,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=12345.67, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[66]), ], @@ -6507,6 +6624,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='[{"name": "get_weather", "arguments": {"location": "Paris"}}]', deprecation=DeprecationInfo(replacement="gen_ai.output.messages"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], @@ -6520,6 +6638,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.provider.name"), aliases=["ai.model.provider", "gen_ai.provider.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[253]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], @@ -6532,6 +6651,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="You are a helpful assistant", deprecation=DeprecationInfo(replacement="gen_ai.system_instructions"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[62]), ], @@ -6544,7 +6664,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="You are a helpful assistant", aliases=["ai.preamble"], changelog=[ - ChangelogEntry(version="next", prs=[264]), + ChangelogEntry(version="next", prs=[264, 270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6556,7 +6676,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='{"location": "Paris"}', aliases=["gen_ai.tool.input"], changelog=[ - ChangelogEntry(version="next", prs=[265]), + ChangelogEntry(version="next", prs=[265, 270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6568,7 +6688,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="rainy, 57°F", aliases=["gen_ai.tool.output", "gen_ai.tool.message"], changelog=[ - ChangelogEntry(version="next", prs=[265]), + ChangelogEntry(version="next", prs=[265, 270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6579,6 +6699,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example='[{"type": "function", "name": "get_current_weather", "description": "Get the current weather in a given location", "parameters": {"type": "object", "properties": {"location": {"type": "string", "description": "The city and state, e.g. San Francisco, CA"}, "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}}, "required": ["location", "unit"]}}]', changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6589,6 +6710,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Searches the web for current information about a topic", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6601,7 +6723,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.call.arguments"), aliases=["gen_ai.tool.call.arguments"], changelog=[ - ChangelogEntry(version="next", prs=[265]), + ChangelogEntry(version="next", prs=[265, 270]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], ), @@ -6614,7 +6736,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.call.result"), aliases=["gen_ai.tool.call.result", "gen_ai.tool.output"], changelog=[ - ChangelogEntry(version="next", prs=[265]), + ChangelogEntry(version="next", prs=[265, 270]), ChangelogEntry(version="0.1.0", prs=[62]), ], ), @@ -6626,6 +6748,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Flights", aliases=["ai.function_call"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6638,7 +6761,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.call.result"), aliases=["gen_ai.tool.call.result", "gen_ai.tool.message"], changelog=[ - ChangelogEntry(version="next", prs=[265]), + ChangelogEntry(version="next", prs=[265, 270]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], ), @@ -6649,6 +6772,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="function", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6661,6 +6785,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.usage.output_tokens"), aliases=["ai.completion_tokens.used", "gen_ai.usage.output_tokens"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -6674,7 +6799,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=10, aliases=["ai.prompt_tokens.used", "gen_ai.usage.prompt_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[261]), + ChangelogEntry(version="next", prs=[261, 270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ChangelogEntry(version="0.0.0"), @@ -6687,6 +6812,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=100, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[217, 228]), ], ), @@ -6697,6 +6823,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=50, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[62, 112]), ], @@ -6709,7 +6836,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=10, aliases=["ai.completion_tokens.used", "gen_ai.usage.completion_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[261]), + ChangelogEntry(version="next", prs=[261, 270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ChangelogEntry(version="0.0.0"), @@ -6722,6 +6849,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=75, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[62, 112]), ], @@ -6735,6 +6863,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.usage.input_tokens"), aliases=["ai.prompt_tokens.used", "gen_ai.usage.input_tokens"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -6748,6 +6877,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=20, aliases=["ai.total_tokens.used"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6759,6 +6889,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="findBookById", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6770,6 +6901,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="query", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6783,6 +6915,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="client.address"), aliases=["client.address"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 106, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6795,6 +6928,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=456, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6808,6 +6942,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.protocol.version"), aliases=["network.protocol.version", "net.protocol.version"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6819,6 +6954,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="#details", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6839,6 +6975,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "net.host.name", ], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6852,6 +6989,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="http.request.method"), aliases=["http.request.method"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6866,6 +7004,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="?foo=bar&bar=baz", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6877,6 +7016,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.111, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -6890,6 +7030,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.15, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -6903,6 +7044,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.201, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -6916,6 +7058,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.322, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -6929,6 +7072,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.389, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -6942,6 +7086,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="http.request.header.custom-header=['foo', 'bar']", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[201, 204]), ChangelogEntry(version="0.1.0", prs=[103]), ], @@ -6954,6 +7099,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="GET", aliases=["method", "http.method"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6966,6 +7112,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829558.502, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[130, 134]), ], @@ -6978,6 +7125,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.495, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -6991,6 +7139,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.51, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7003,6 +7152,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=2, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7015,6 +7165,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.89, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7028,6 +7179,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.7, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7041,6 +7193,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.73, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7054,6 +7207,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1.032, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[131]), ], @@ -7066,6 +7220,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829553.68, sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[130, 134]), ], @@ -7078,6 +7233,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=123, aliases=["http.response_content_length", "http.response.header.content-length"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[106]), ChangelogEntry(version="0.0.0"), @@ -7091,6 +7247,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="http.response.header.custom-header=['foo', 'bar']", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[201, 204]), ChangelogEntry(version="0.1.0", prs=[103]), ], @@ -7103,6 +7260,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="http.response.header.custom-header=['foo', 'bar']", aliases=["http.response_content_length", "http.response.body.size"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7115,6 +7273,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=456, aliases=["http.response_transfer_size"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7127,6 +7286,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=404, aliases=["http.status_code"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7142,6 +7302,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["http.response.body.size", "http.response.header.content-length"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61, 106]), ChangelogEntry(version="0.0.0"), @@ -7158,6 +7319,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["http.response.size"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -7171,6 +7333,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/users/:id", aliases=["url.template"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7184,6 +7347,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="url.scheme"), aliases=["url.scheme"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7196,7 +7360,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=50, sdks=["ruby"], changelog=[ - ChangelogEntry(version="next", prs=[267]), + ChangelogEntry(version="next", prs=[267, 270]), ], ), "http.server_name": AttributeMetadata( @@ -7208,6 +7372,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="server.address"), aliases=["server.address", "net.host.name", "http.host"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7221,6 +7386,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="http.response.status_code"), aliases=["http.response.status_code"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -7237,6 +7403,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="This attribute is being deprecated in favor of url.path and url.query", ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -7250,6 +7417,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="url.full"), aliases=["url.full", "url"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108]), ChangelogEntry(version="0.0.0"), ], @@ -7263,6 +7431,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="user_agent.original"), aliases=["user_agent.original"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7275,6 +7444,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="f47ac10b58cc4372a5670e02b2c3d479", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -7285,6 +7455,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="end of minor GC", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7296,6 +7467,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="G1 Young Generation", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7307,6 +7479,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="G1 Old Gen", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7318,6 +7491,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="G1 Old Gen", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7329,6 +7503,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -7339,6 +7514,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="blocked", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7350,6 +7526,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="img", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7361,6 +7538,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="#hero", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7372,6 +7550,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1234, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7383,6 +7562,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https://example.com", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7394,6 +7574,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="myLogger", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7408,6 +7589,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="User cancelled the request", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7418,6 +7600,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="123", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7428,6 +7611,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="claude-desktop", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7441,6 +7625,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Claude Desktop", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7451,6 +7636,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1.0.0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7461,6 +7647,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="initialization_complete", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7471,6 +7658,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="string", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7481,6 +7669,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="info", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7494,6 +7683,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="mcp_server", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7504,6 +7694,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Tool execution completed successfully", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7514,6 +7705,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="tools/call", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7524,6 +7716,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=50, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7538,6 +7731,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Processing 50 of 100 items", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7548,6 +7742,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=50, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7559,6 +7754,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="progress-token-123", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7569,6 +7765,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=100, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7583,6 +7780,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="summarize", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7593,6 +7791,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="A summary of the requested information", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7603,6 +7802,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Please provide a summary of the document", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7613,6 +7813,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=3, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7624,6 +7825,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="user", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7634,6 +7836,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7645,6 +7848,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="2024-11-05", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7656,6 +7860,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="mcp.request.argument.query='weather in Paris'", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[176]), ], ), @@ -7666,6 +7871,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="summarize", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7676,6 +7882,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="file:///path/to/resource", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7686,6 +7893,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7696,6 +7904,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="file", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7706,6 +7915,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="file:///path/to/file.txt", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7716,6 +7926,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sentry-mcp-server", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7729,6 +7940,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Sentry MCP Server", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7739,6 +7951,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="0.1.0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7749,6 +7962,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="550e8400-e29b-41d4-a716-446655440000", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7759,6 +7973,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="calculator", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7769,6 +7984,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example='{"output": "rainy", "toolCallId": "1"}', changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ChangelogEntry(version="0.2.0", prs=[164]), ], @@ -7780,6 +7996,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7791,6 +8008,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=False, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7801,6 +8019,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="stdio", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7813,6 +8032,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="mdc.some_key='some_value'", sdks=["java", "java.logback", "java.jul", "java.log4j2"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[176]), ], ), @@ -7824,6 +8044,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="BestTopic", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7836,6 +8057,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="BestTopic", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7848,6 +8070,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=839, sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7860,6 +8083,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1045, sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7872,6 +8096,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="f47ac10b58cc4372a5670e02b2c3d479", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7884,6 +8109,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732847252, sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7896,6 +8122,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=2, sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7907,6 +8134,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="create", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[51, 127]), ], ), @@ -7918,6 +8146,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="activemq", sdks=["php-laravel"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7932,6 +8161,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["http.request.method"], sdks=["javascript-browser", "javascript-node"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7943,6 +8173,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="router.push", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7954,6 +8185,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=100, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[68]), ], @@ -7965,6 +8197,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="application", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -7975,6 +8208,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https://example.com/foo?bar=baz", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -7985,6 +8219,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.5, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[68]), ], @@ -7996,6 +8231,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="dns.unreachable", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -8008,6 +8244,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.local.address"), aliases=["network.local.address", "net.sock.host.addr"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8021,6 +8258,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="server.address"), aliases=["server.address", "http.server_name", "http.host"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8034,6 +8272,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="server.port"), aliases=["server.port"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8048,6 +8287,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.peer.address"), aliases=["network.peer.address", "net.sock.peer.addr"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8063,6 +8303,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated, use server.address on client spans and client.address on server spans.", ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8078,6 +8319,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated, use server.port on client spans and client.port on server spans.", ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8092,6 +8334,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.protocol.name"), aliases=["network.protocol.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8105,6 +8348,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.protocol.version"), aliases=["network.protocol.version", "http.flavor"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8120,6 +8364,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated, use network.transport and network.type.", ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8133,6 +8378,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.local.address"), aliases=["network.local.address", "net.host.ip"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8146,6 +8392,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.local.port"), aliases=["network.local.port"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8160,6 +8407,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.peer.address"), aliases=["network.peer.address", "net.peer.ip"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8174,6 +8422,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated from OTEL, no replacement at this time" ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 119, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8186,6 +8435,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=8080, deprecation=DeprecationInfo(replacement="network.peer.port"), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8200,6 +8450,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.transport"), aliases=["network.transport"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8212,6 +8463,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="10.1.2.80", aliases=["net.host.ip", "net.sock.host.addr"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8224,6 +8476,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=65400, aliases=["net.sock.host.port"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8236,6 +8489,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="10.1.2.80", aliases=["net.peer.ip", "net.sock.peer.addr"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8247,6 +8501,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=65400, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8259,6 +8514,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="http", aliases=["net.protocol.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8271,6 +8527,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="1.1", aliases=["http.flavor", "net.protocol.version"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8283,6 +8540,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="tcp", aliases=["net.transport"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8294,6 +8552,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="ipv4", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8305,6 +8564,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="1234567890", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8316,6 +8576,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Ubuntu 18.04.1 LTS", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8327,6 +8588,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Ubuntu", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8338,6 +8600,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="linux", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8349,6 +8612,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="18.04.2", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8360,6 +8624,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="io.opentelemetry.contrib.mongodb", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8371,6 +8636,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="2.4.5", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8382,6 +8648,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="OK", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8393,6 +8660,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="resource not found", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8406,6 +8674,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="params.id='123'", aliases=["url.path.parameter."], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8417,6 +8686,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="HomeScreen", sdks=["javascript-reactnative"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[74]), ChangelogEntry(version="0.0.0"), ], @@ -8428,6 +8698,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="getsentry", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8439,6 +8710,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=12345, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8450,6 +8722,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Eclipse OpenJ9 VM openj9-0.21.0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8461,6 +8734,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="node", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8472,6 +8746,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="18.04.2", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8488,6 +8763,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Instead of sending items individually in query., they should be sent all together with url.query.", ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8500,6 +8776,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.release"), aliases=["sentry.release"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8513,6 +8790,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="http.response.header.text='test'", sdks=["javascript-remix"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8525,6 +8803,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.replay_id"), aliases=["sentry.replay_id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -8539,7 +8818,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): replacement="sentry.environment", status=DeprecationStatus.BACKFILL ), changelog=[ - ChangelogEntry(version="next", prs=[266]), + ChangelogEntry(version="next", prs=[266, 270]), ], ), "resource.deployment.environment.name": AttributeMetadata( @@ -8552,6 +8831,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): replacement="sentry.environment", status=DeprecationStatus.BACKFILL ), changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[196]), ], ), @@ -8563,6 +8843,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="non-blocking", sdks=["javascript-browser"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8577,6 +8858,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["http.route"], sdks=["php-laravel", "javascript-reactnative"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 74]), ChangelogEntry(version="0.0.0"), ], @@ -8588,6 +8870,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=2, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8599,6 +8882,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="myService.BestService", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8610,6 +8894,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="SELECT", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -8622,6 +8907,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="browser.name"), aliases=["browser.name"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[139]), ], ), @@ -8634,6 +8920,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="browser.version"), aliases=["browser.version"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[139]), ], ), @@ -8644,6 +8931,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="document.hidden", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8654,6 +8942,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="db", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[218]), ], ), @@ -8664,6 +8953,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.5, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[102]), ], ), @@ -8674,6 +8964,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="index view query", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[135]), ], ), @@ -8684,6 +8975,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1.0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8694,6 +8986,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="example.com", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -8704,6 +8997,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="prod", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8714,6 +9008,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="c51734c603c4430eb57cb0a5728a479d", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8724,6 +9019,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="frontend@e8211be71b214afab5b85de4b4c54be3714952bb", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8734,6 +9030,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1.0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8744,6 +9041,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8754,6 +9052,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="047372980460430cbc78d9779df33a46", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8764,6 +9063,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="/issues/errors-outages/", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -8775,6 +9075,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="production", aliases=["environment"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8785,6 +9086,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1234, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[160]), ChangelogEntry(version="0.0.0"), @@ -8797,6 +9099,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="getUserById", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), @@ -8806,6 +9109,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): pii=PiiInfo(isPii=IsPii.FALSE), is_in_otel=False, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -8816,6 +9120,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8826,6 +9131,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="idleTimeout", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8836,6 +9142,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), @@ -8846,16 +9153,10 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="server", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), - "sentry.log.sequence": AttributeMetadata( - brief="A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", - type=AttributeType.INTEGER, - pii=PiiInfo(isPii=IsPii.FALSE), - is_in_otel=False, - example=42, - ), "sentry.message.parameter.": AttributeMetadata( brief="A parameter used in the message template. can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0, sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id, sentry.message.parameter.user_id, etc)", type=AttributeType.STRING, @@ -8863,6 +9164,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sentry.message.parameter.0='123'", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116]), ], ), @@ -8873,6 +9175,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Hello, {name}!", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116]), ], ), @@ -8884,6 +9187,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="sentry.module.brianium/paratest='v7.7.0'", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8895,6 +9199,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/posts/[id]/layout", sdks=["javascript"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[54, 106]), ], ), @@ -8906,6 +9211,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="generateMetadata", sdks=["javascript"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[54, 106]), ], ), @@ -8916,6 +9222,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="SELECT .. FROM sentry_project WHERE (project_id = %s)", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[194]), ], ), @@ -8925,6 +9232,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): pii=PiiInfo(isPii=IsPii.FALSE), is_in_otel=False, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[200]), ], ), @@ -8935,6 +9243,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="SELECT .. FROM sentry_project WHERE (project_id = %s)", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -8945,6 +9254,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1544712660300000000", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[174]), ChangelogEntry(version="0.2.0", prs=[137]), ], @@ -8956,6 +9266,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="http.client", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8966,6 +9277,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="auto.http.otel.fastify", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68]), ChangelogEntry(version="0.0.0"), ], @@ -8977,6 +9289,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="php", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8987,6 +9300,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="18779b64dd35d1a538e7ce2dd2d3fad3", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[242]), ], ), @@ -8998,6 +9312,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="7.0.0", aliases=["service.version", "release"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9009,6 +9324,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="123e4567e89b12d3a456426614174000", aliases=["replay_id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9019,6 +9335,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9034,6 +9351,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "Breadcrumbs", ], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0", prs=[42]), ], ), @@ -9044,6 +9362,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="@sentry/react", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9054,6 +9373,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="7.0.0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9065,6 +9385,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="051581bf3cb55c13", aliases=["sentry.segment_id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[107, 124]), ], ), @@ -9075,6 +9396,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="GET /user", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[104]), ], ), @@ -9087,6 +9409,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.segment.id"), aliases=["sentry.segment.id"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[124]), ], ), @@ -9097,6 +9420,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.5, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[102]), ], ), @@ -9107,6 +9431,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="route", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[214]), ChangelogEntry(version="0.0.0"), ], @@ -9118,6 +9443,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="foobar", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), @@ -9128,9 +9454,17 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=200, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[223, 228]), ], ), + "sentry.timestamp.sequence": AttributeMetadata( + brief="A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.", + type=AttributeType.INTEGER, + pii=PiiInfo(isPii=IsPii.FALSE), + is_in_otel=False, + example=0, + ), "sentry.trace.parent_span_id": AttributeMetadata( brief="The span id of the span that was active when the log was collected. This should not be set if there was no active span.", type=AttributeType.STRING, @@ -9138,6 +9472,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="b0e6f15b45c36b12", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116]), ], ), @@ -9149,6 +9484,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="GET /", aliases=["transaction"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9160,6 +9496,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="example.com", aliases=["http.server_name", "net.host.name", "http.host"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -9172,6 +9509,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1337, aliases=["net.host.port"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -9183,6 +9521,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="omegastar", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9195,6 +9534,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="5.0.0", aliases=["sentry.release"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9206,6 +9546,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=56, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9216,6 +9557,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="main", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9228,6 +9570,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="MyTag", sdks=["sentry.java.android"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[183]), ], ), @@ -9240,6 +9583,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.transaction"), aliases=["sentry.transaction"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -9252,6 +9596,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="fetch", sdks=["javascript-browser", "javascript-node"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9262,6 +9607,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="HomeButton", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9273,6 +9619,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9283,6 +9630,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9293,6 +9641,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="example.com", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9304,6 +9653,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="details", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9315,6 +9665,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="https://example.com/test?foo=bar#buzz", aliases=["http.url", "url"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[108]), ChangelogEntry(version="0.0.0"), ], @@ -9326,6 +9677,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="/foo", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9338,6 +9690,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="url.path.parameter.id='123'", aliases=["params."], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -9348,6 +9701,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=1337, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -9362,6 +9716,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="foo=bar&bar=baz", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9373,6 +9728,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="https", aliases=["http.scheme"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9385,6 +9741,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/users/:id", aliases=["http.route"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9399,6 +9756,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["url.full", "http.url"], sdks=["javascript-browser", "javascript-node"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -9410,6 +9768,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="test@example.com", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9420,6 +9779,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="John Smith", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9430,6 +9790,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Toronto", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9440,6 +9801,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="CA", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9450,6 +9812,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Canada", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9460,6 +9823,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Ontario", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9470,6 +9834,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9480,6 +9845,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="S-1-5-21-202424912787-2692429404-2351956786-1000", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9490,6 +9856,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="192.168.1.1", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[75]), ], ), @@ -9500,6 +9867,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="j.smith", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9510,6 +9878,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=["admin", "editor"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9521,6 +9890,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1", aliases=["http.user_agent"], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9532,6 +9902,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="main", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9542,6 +9913,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="bld_cotnkcr76", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9552,6 +9924,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="dpl_233NRGRjVZX1caZrXWtz5g1TAksD", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9562,6 +9935,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https://vitals.vercel-insights.com/v1", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9572,6 +9946,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="edge-function", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9582,6 +9957,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="api/index.js", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9592,6 +9968,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9602,6 +9979,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1573817187330377061717300000", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9612,6 +9990,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9622,6 +10001,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="t13d1516h2_8daaf6152771_02713d6af862", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9632,6 +10012,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="stdout", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9642,6 +10023,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="gdufoJxB6b9b1fEqr1jUtFkyavUU", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9652,6 +10034,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="my-app", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9662,6 +10045,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="pdx1::v8g4b-1744143786684-93dafbc0f70d", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9672,6 +10056,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="120.75.16.101", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9682,6 +10067,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="test.vercel.app", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9692,6 +10078,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9702,6 +10089,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="GET", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9712,6 +10100,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="/dynamic/some-value.json?route=some-value", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9722,6 +10111,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="func", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9732,6 +10122,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="api", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9742,6 +10133,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="*.vercel.app", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9752,6 +10144,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9762,6 +10155,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1024, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -9773,6 +10167,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9783,6 +10178,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=200, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -9794,6 +10190,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1573817250172, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -9805,6 +10202,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=["Mozilla/5.0..."], changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9815,6 +10213,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="REVALIDATED", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9825,6 +10224,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1::abc123", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9835,6 +10235,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="deny", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9845,6 +10246,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="rule_gAHz8jtSB1Gy", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9855,6 +10257,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="643af4e3-975a-4cc7-9e7a-1eda11539d90", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9865,6 +10268,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="build", changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9875,6 +10279,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=200, changelog=[ + ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -10220,7 +10625,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.idle_span_finish_reason": str, "sentry.is_remote": bool, "sentry.kind": str, - "sentry.log.sequence": int, "sentry.message.parameter.": str, "sentry.message.template": str, "sentry.module.": str, @@ -10247,6 +10651,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.span.source": str, "sentry.status.message": str, "sentry.status_code": int, + "sentry.timestamp.sequence": int, "sentry.trace.parent_span_id": str, "sentry.transaction": str, "server.address": str, diff --git a/shared/deprecated_attributes.json b/shared/deprecated_attributes.json index 76c15e9e..02ce7497 100644 --- a/shared/deprecated_attributes.json +++ b/shared/deprecated_attributes.json @@ -16,6 +16,10 @@ }, "alias": ["sentry.environment"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -41,6 +45,10 @@ "example": "ENOENT: no such file or directory", "sdks": ["javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -66,6 +74,10 @@ "alias": ["http.request.method"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -90,6 +102,10 @@ }, "alias": ["sentry.release"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -114,6 +130,10 @@ }, "alias": ["sentry.replay_id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] @@ -139,6 +159,10 @@ "alias": ["http.route"], "sdks": ["php-laravel", "javascript-reactnative"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 74] @@ -163,6 +187,10 @@ }, "alias": ["sentry.transaction"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -188,6 +216,10 @@ "alias": ["url.full", "http.url"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] @@ -212,7 +244,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -236,6 +268,10 @@ "replacement": "gen_ai.usage.output_tokens" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -264,7 +300,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -287,6 +323,10 @@ }, "alias": ["gen_ai.response.finish_reasons"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] @@ -308,6 +348,10 @@ }, "alias": ["gen_ai.request.frequency_penalty"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -333,6 +377,10 @@ }, "alias": ["gen_ai.tool.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108] @@ -354,6 +402,10 @@ }, "alias": ["gen_ai.response.id"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] @@ -376,6 +428,10 @@ "replacement": "gen_ai.request.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [65, 119] @@ -400,7 +456,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -423,7 +479,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -446,6 +502,10 @@ }, "alias": ["gen_ai.provider.name", "gen_ai.system"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [253] @@ -472,6 +532,10 @@ "replacement": "gen_ai.response.model" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [57, 61, 127] @@ -496,6 +560,10 @@ }, "alias": ["gen_ai.pipeline.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [53, 76, 108, 127] @@ -519,7 +587,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -542,6 +610,10 @@ }, "alias": ["gen_ai.request.presence_penalty"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -568,6 +640,10 @@ "replacement": "gen_ai.usage.input_tokens" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -596,7 +672,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -619,7 +695,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -642,6 +718,10 @@ "replacement": "gen_ai.response.text" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [65, 127] @@ -666,7 +746,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -689,7 +769,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -712,6 +792,10 @@ }, "alias": ["gen_ai.request.seed"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] @@ -734,6 +818,10 @@ }, "alias": ["gen_ai.response.streaming"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [76, 108] @@ -758,7 +846,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -781,6 +869,10 @@ }, "alias": ["gen_ai.request.temperature"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -808,7 +900,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -830,6 +922,10 @@ "replacement": "gen_ai.response.tool_calls" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 65] @@ -850,6 +946,10 @@ "replacement": "gen_ai.request.available_tools" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [55, 65, 127] @@ -871,6 +971,10 @@ }, "alias": ["gen_ai.request.top_k"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -896,6 +1000,10 @@ }, "alias": ["gen_ai.request.top_p"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -923,7 +1031,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.4.0", @@ -951,6 +1059,10 @@ }, "alias": ["gen_ai.usage.total_tokens"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -979,7 +1091,7 @@ "changelog": [ { "version": "next", - "prs": [264] + "prs": [264, 270] }, { "version": "0.1.0", @@ -1002,6 +1114,10 @@ }, "alias": ["code.file.path"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] @@ -1026,6 +1142,10 @@ }, "alias": ["code.function.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 74] @@ -1050,6 +1170,10 @@ }, "alias": ["code.line.number"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1078,6 +1202,10 @@ "reason": "code.function.name should include the namespace." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 74] @@ -1102,6 +1230,10 @@ }, "alias": ["db.namespace"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -1126,6 +1258,10 @@ }, "alias": ["db.operation.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [199] @@ -1155,6 +1291,10 @@ "example": ["1", "foo"], "sdks": ["php-laravel"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] @@ -1179,6 +1319,10 @@ }, "alias": ["db.query.text"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [199] @@ -1207,6 +1351,10 @@ }, "alias": ["db.system.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [199, 224] @@ -1234,6 +1382,10 @@ "reason": "Deprecated from OTEL, use gen_ai.input.messages with the new format instead." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [74, 108, 119] @@ -1258,6 +1410,10 @@ "replacement": "gen_ai.tool.definitions" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] @@ -1283,6 +1439,10 @@ "replacement": "gen_ai.input.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] @@ -1308,6 +1468,10 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] @@ -1333,6 +1497,10 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] @@ -1358,6 +1526,10 @@ }, "alias": ["ai.model.provider", "gen_ai.provider.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [253] @@ -1382,6 +1554,10 @@ "replacement": "gen_ai.system_instructions" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [221] @@ -1409,7 +1585,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.1.0", @@ -1434,7 +1610,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.1.0", @@ -1459,7 +1635,7 @@ "changelog": [ { "version": "next", - "prs": [265] + "prs": [265, 270] }, { "version": "0.1.0", @@ -1482,6 +1658,10 @@ }, "alias": ["ai.completion_tokens.used", "gen_ai.usage.output_tokens"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1510,6 +1690,10 @@ }, "alias": ["ai.prompt_tokens.used", "gen_ai.usage.input_tokens"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1538,6 +1722,10 @@ }, "alias": ["client.address"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 106, 127] @@ -1562,6 +1750,10 @@ }, "alias": ["network.protocol.version", "net.protocol.version"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1587,6 +1779,10 @@ }, "alias": ["server.address", "client.address", "http.server_name", "net.host.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1611,6 +1807,10 @@ }, "alias": ["http.request.method"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -1635,6 +1835,10 @@ }, "alias": ["http.response.body.size", "http.response.header.content-length"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1663,6 +1867,10 @@ }, "alias": ["http.response.size"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1691,6 +1899,10 @@ }, "alias": ["url.scheme"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -1715,6 +1927,10 @@ }, "alias": ["server.address", "net.host.name", "http.host"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1739,6 +1955,10 @@ }, "alias": ["http.response.status_code"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1767,6 +1987,10 @@ "reason": "This attribute is being deprecated in favor of url.path and url.query" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61] @@ -1791,6 +2015,10 @@ }, "alias": ["url.full", "url"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108] @@ -1815,6 +2043,10 @@ }, "alias": ["user_agent.original"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -1839,6 +2071,10 @@ }, "alias": ["network.local.address", "net.sock.host.addr"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1863,6 +2099,10 @@ }, "alias": ["server.address", "http.server_name", "http.host"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1887,6 +2127,10 @@ }, "alias": ["server.port"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1915,6 +2159,10 @@ }, "alias": ["network.peer.address", "net.sock.peer.addr"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1939,6 +2187,10 @@ "reason": "Deprecated, use server.address on client spans and client.address on server spans." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -1963,6 +2215,10 @@ "reason": "Deprecated, use server.port on client spans and client.port on server spans." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -1991,6 +2247,10 @@ }, "alias": ["network.protocol.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -2015,6 +2275,10 @@ }, "alias": ["network.protocol.version", "http.flavor"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2039,6 +2303,10 @@ "reason": "Deprecated, use network.transport and network.type." }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -2063,6 +2331,10 @@ }, "alias": ["network.local.address", "net.host.ip"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2087,6 +2359,10 @@ }, "alias": ["network.local.port"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -2115,6 +2391,10 @@ }, "alias": ["network.peer.address", "net.peer.ip"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2138,6 +2418,10 @@ "reason": "Deprecated from OTEL, no replacement at this time" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 119, 127] @@ -2161,6 +2445,10 @@ "replacement": "network.peer.port" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.4.0", "prs": [228] @@ -2189,6 +2477,10 @@ }, "alias": ["network.transport"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [61, 127] @@ -2214,6 +2506,10 @@ }, "example": "query.id='123'", "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [103] @@ -2236,7 +2532,7 @@ "changelog": [ { "version": "next", - "prs": [266] + "prs": [266, 270] } ] }, @@ -2254,6 +2550,10 @@ "replacement": "sentry.environment" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.3.1", "prs": [196] @@ -2275,6 +2575,10 @@ }, "alias": ["browser.name"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [139] @@ -2296,6 +2600,10 @@ }, "alias": ["browser.version"], "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [139] @@ -2317,6 +2625,10 @@ "replacement": "sentry.segment.id" }, "changelog": [ + { + "version": "next", + "prs": [270] + }, { "version": "0.1.0", "prs": [124] From 98d28de98d424fb4b983e980d95c5d1e4355dff3 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Wed, 4 Mar 2026 17:14:40 -0500 Subject: [PATCH 3/7] Revert "feat: Add sentry.timestamp.sequence attribute definition" This reverts commit f412ffaae8fd0f9180ff9c42f9e6305fe7e84ede. --- .../sentry-conventions/src/attributes.ts | 1471 +++++------------ model/attributes/ai/ai__citations.json | 2 +- .../ai/ai__completion_tokens__used.json | 4 - model/attributes/ai/ai__documents.json | 2 +- model/attributes/ai/ai__finish_reason.json | 4 - .../attributes/ai/ai__frequency_penalty.json | 4 - model/attributes/ai/ai__function_call.json | 4 - model/attributes/ai/ai__generation_id.json | 4 - model/attributes/ai/ai__input_messages.json | 4 - .../attributes/ai/ai__is_search_required.json | 2 +- model/attributes/ai/ai__metadata.json | 2 +- model/attributes/ai/ai__model__provider.json | 4 - model/attributes/ai/ai__model_id.json | 4 - model/attributes/ai/ai__pipeline__name.json | 4 - model/attributes/ai/ai__preamble.json | 2 +- model/attributes/ai/ai__presence_penalty.json | 4 - .../ai/ai__prompt_tokens__used.json | 4 - model/attributes/ai/ai__raw_prompting.json | 2 +- model/attributes/ai/ai__response_format.json | 2 +- model/attributes/ai/ai__responses.json | 4 - model/attributes/ai/ai__search_queries.json | 2 +- model/attributes/ai/ai__search_results.json | 2 +- model/attributes/ai/ai__seed.json | 4 - model/attributes/ai/ai__streaming.json | 4 - model/attributes/ai/ai__tags.json | 2 +- model/attributes/ai/ai__temperature.json | 4 - model/attributes/ai/ai__texts.json | 2 +- model/attributes/ai/ai__tool_calls.json | 4 - model/attributes/ai/ai__tools.json | 4 - model/attributes/ai/ai__top_k.json | 4 - model/attributes/ai/ai__top_p.json | 4 - model/attributes/ai/ai__total_cost.json | 2 +- .../attributes/ai/ai__total_tokens__used.json | 4 - model/attributes/ai/ai__warnings.json | 2 +- model/attributes/app_start_type.json | 4 - model/attributes/blocked_main_thread.json | 4 - model/attributes/browser/browser__name.json | 4 - .../browser/browser__report__type.json | 4 - .../browser/browser__script__invoker.json | 4 - .../browser__script__invoker_type.json | 4 - ...browser__script__source_char_position.json | 4 - .../attributes/browser/browser__version.json | 4 - model/attributes/cache/cache__hit.json | 4 - model/attributes/cache/cache__item_size.json | 4 - model/attributes/cache/cache__key.json | 4 - model/attributes/cache/cache__operation.json | 4 - model/attributes/cache/cache__ttl.json | 4 - model/attributes/channel.json | 4 - model/attributes/client/client__address.json | 4 - model/attributes/client/client__port.json | 4 - .../cloudflare/cloudflare__d1__duration.json | 4 - .../cloudflare/cloudflare__d1__rows_read.json | 4 - .../cloudflare__d1__rows_written.json | 4 - model/attributes/code/code__file__path.json | 4 - model/attributes/code/code__filepath.json | 4 - model/attributes/code/code__function.json | 4 - .../attributes/code/code__function__name.json | 4 - model/attributes/code/code__line__number.json | 4 - model/attributes/code/code__lineno.json | 4 - model/attributes/code/code__namespace.json | 4 - .../attributes/culture/culture__calendar.json | 4 - .../culture/culture__display_name.json | 4 - .../culture/culture__is_24_hour_format.json | 4 - model/attributes/culture/culture__locale.json | 4 - .../attributes/culture/culture__timezone.json | 4 - model/attributes/db/db__collection__name.json | 4 - model/attributes/db/db__name.json | 4 - model/attributes/db/db__namespace.json | 4 - model/attributes/db/db__operation.json | 4 - model/attributes/db/db__operation__name.json | 4 - .../db/db__query__parameter__[key].json | 4 - model/attributes/db/db__query__summary.json | 4 - model/attributes/db/db__query__text.json | 4 - .../attributes/db/db__redis__connection.json | 4 - .../attributes/db/db__redis__parameters.json | 4 - model/attributes/db/db__sql__bindings.json | 4 - model/attributes/db/db__statement.json | 4 - model/attributes/db/db__system.json | 4 - model/attributes/db/db__system__name.json | 4 - model/attributes/db/db__user.json | 4 - model/attributes/device/device__brand.json | 4 - model/attributes/device/device__family.json | 4 - model/attributes/device/device__model.json | 4 - model/attributes/environment.json | 4 - model/attributes/error/error__type.json | 4 - model/attributes/event/event__id.json | 4 - model/attributes/event/event__name.json | 4 - .../exception/exception__escaped.json | 4 - .../exception/exception__message.json | 4 - .../exception/exception__stacktrace.json | 4 - .../attributes/exception/exception__type.json | 4 - model/attributes/faas/faas__coldstart.json | 4 - model/attributes/faas/faas__cron.json | 4 - model/attributes/faas/faas__time.json | 4 - model/attributes/faas/faas__trigger.json | 4 - .../flag/flag__evaluation__[key].json | 4 - model/attributes/frames/frames__delay.json | 4 - model/attributes/frames/frames__frozen.json | 4 - model/attributes/frames/frames__slow.json | 4 - model/attributes/frames/frames__total.json | 4 - model/attributes/fs_error.json | 4 - .../gen_ai/gen_ai__agent__name.json | 4 - .../gen_ai/gen_ai__conversation__id.json | 4 - .../gen_ai/gen_ai__cost__input_tokens.json | 4 - .../gen_ai/gen_ai__cost__output_tokens.json | 4 - .../gen_ai/gen_ai__cost__total_tokens.json | 2 +- .../gen_ai/gen_ai__embeddings__input.json | 4 - .../gen_ai/gen_ai__input__messages.json | 2 +- .../gen_ai/gen_ai__operation__name.json | 4 - .../gen_ai/gen_ai__operation__type.json | 4 - .../gen_ai/gen_ai__output__messages.json | 4 - .../gen_ai/gen_ai__pipeline__name.json | 4 - model/attributes/gen_ai/gen_ai__prompt.json | 4 - .../gen_ai/gen_ai__provider__name.json | 4 - .../gen_ai__request__available_tools.json | 4 - .../gen_ai__request__frequency_penalty.json | 4 - .../gen_ai/gen_ai__request__max_tokens.json | 4 - .../gen_ai/gen_ai__request__messages.json | 4 - .../gen_ai/gen_ai__request__model.json | 4 - .../gen_ai__request__presence_penalty.json | 4 - .../gen_ai/gen_ai__request__seed.json | 4 - .../gen_ai/gen_ai__request__temperature.json | 4 - .../gen_ai/gen_ai__request__top_k.json | 4 - .../gen_ai/gen_ai__request__top_p.json | 4 - .../gen_ai__response__finish_reasons.json | 4 - .../gen_ai/gen_ai__response__id.json | 4 - .../gen_ai/gen_ai__response__model.json | 4 - .../gen_ai/gen_ai__response__streaming.json | 4 - .../gen_ai/gen_ai__response__text.json | 4 - ...gen_ai__response__time_to_first_token.json | 4 - .../gen_ai__response__tokens_per_second.json | 4 - .../gen_ai/gen_ai__response__tool_calls.json | 4 - model/attributes/gen_ai/gen_ai__system.json | 4 - .../gen_ai/gen_ai__system__message.json | 4 - .../gen_ai/gen_ai__system_instructions.json | 2 +- .../gen_ai/gen_ai__tool__call__arguments.json | 2 +- .../gen_ai/gen_ai__tool__call__result.json | 2 +- .../gen_ai/gen_ai__tool__definitions.json | 4 - .../gen_ai/gen_ai__tool__description.json | 4 - .../gen_ai/gen_ai__tool__input.json | 2 +- .../gen_ai/gen_ai__tool__message.json | 2 +- .../attributes/gen_ai/gen_ai__tool__name.json | 4 - .../gen_ai/gen_ai__tool__output.json | 2 +- .../attributes/gen_ai/gen_ai__tool__type.json | 4 - .../gen_ai__usage__completion_tokens.json | 4 - .../gen_ai/gen_ai__usage__input_tokens.json | 2 +- ..._ai__usage__input_tokens__cache_write.json | 4 - .../gen_ai__usage__input_tokens__cached.json | 4 - .../gen_ai/gen_ai__usage__output_tokens.json | 2 +- ...n_ai__usage__output_tokens__reasoning.json | 4 - .../gen_ai/gen_ai__usage__prompt_tokens.json | 4 - .../gen_ai/gen_ai__usage__total_tokens.json | 4 - .../graphql/graphql__operation__name.json | 4 - .../graphql/graphql__operation__type.json | 4 - model/attributes/http/http__client_ip.json | 4 - ...http__decoded_response_content_length.json | 4 - model/attributes/http/http__flavor.json | 4 - model/attributes/http/http__fragment.json | 4 - model/attributes/http/http__host.json | 4 - model/attributes/http/http__method.json | 4 - model/attributes/http/http__query.json | 4 - .../http/http__request__connect_start.json | 4 - .../http/http__request__connection_end.json | 4 - .../http__request__domain_lookup_end.json | 4 - .../http__request__domain_lookup_start.json | 4 - .../http/http__request__fetch_start.json | 4 - .../http/http__request__header__[key].json | 4 - .../http/http__request__method.json | 4 - .../http/http__request__redirect_end.json | 4 - .../http/http__request__redirect_start.json | 4 - .../http/http__request__request_start.json | 4 - .../http/http__request__resend_count.json | 4 - .../http/http__request__response_end.json | 4 - .../http/http__request__response_start.json | 4 - ...ttp__request__secure_connection_start.json | 4 - .../http__request__time_to_first_byte.json | 4 - .../http/http__request__worker_start.json | 4 - .../http/http__response__body__size.json | 4 - .../http/http__response__header__[key].json | 4 - ...ttp__response__header__content-length.json | 4 - .../attributes/http/http__response__size.json | 4 - .../http/http__response__status_code.json | 4 - .../http/http__response_content_length.json | 4 - .../http/http__response_transfer_size.json | 4 - model/attributes/http/http__route.json | 4 - model/attributes/http/http__scheme.json | 4 - .../http__server__request__time_in_queue.json | 2 +- model/attributes/http/http__server_name.json | 4 - model/attributes/http/http__status_code.json | 4 - model/attributes/http/http__target.json | 4 - model/attributes/http/http__url.json | 4 - model/attributes/http/http__user_agent.json | 4 - model/attributes/id.json | 4 - model/attributes/jvm/jvm__gc__action.json | 4 - model/attributes/jvm/jvm__gc__name.json | 4 - .../jvm/jvm__memory__pool__name.json | 4 - model/attributes/jvm/jvm__memory__type.json | 4 - model/attributes/jvm/jvm__thread__daemon.json | 4 - model/attributes/jvm/jvm__thread__state.json | 4 - model/attributes/lcp/lcp__element.json | 4 - model/attributes/lcp/lcp__id.json | 4 - model/attributes/lcp/lcp__size.json | 4 - model/attributes/lcp/lcp__url.json | 4 - model/attributes/logger/logger__name.json | 4 - .../mcp/mcp__cancelled__reason.json | 4 - .../mcp/mcp__cancelled__request_id.json | 4 - model/attributes/mcp/mcp__client__name.json | 4 - model/attributes/mcp/mcp__client__title.json | 4 - .../attributes/mcp/mcp__client__version.json | 4 - .../attributes/mcp/mcp__lifecycle__phase.json | 4 - .../mcp/mcp__logging__data_type.json | 4 - model/attributes/mcp/mcp__logging__level.json | 4 - .../attributes/mcp/mcp__logging__logger.json | 4 - .../attributes/mcp/mcp__logging__message.json | 4 - model/attributes/mcp/mcp__method__name.json | 4 - .../mcp/mcp__progress__current.json | 4 - .../mcp/mcp__progress__message.json | 4 - .../mcp/mcp__progress__percentage.json | 4 - .../attributes/mcp/mcp__progress__token.json | 4 - .../attributes/mcp/mcp__progress__total.json | 4 - model/attributes/mcp/mcp__prompt__name.json | 4 - .../mcp/mcp__prompt__result__description.json | 4 - .../mcp__prompt__result__message_content.json | 4 - .../mcp__prompt__result__message_count.json | 4 - .../mcp__prompt__result__message_role.json | 4 - .../attributes/mcp/mcp__protocol__ready.json | 4 - .../mcp/mcp__protocol__version.json | 4 - .../mcp/mcp__request__argument__[key].json | 4 - .../mcp/mcp__request__argument__name.json | 4 - .../mcp/mcp__request__argument__uri.json | 4 - model/attributes/mcp/mcp__request__id.json | 4 - .../mcp/mcp__resource__protocol.json | 4 - model/attributes/mcp/mcp__resource__uri.json | 4 - model/attributes/mcp/mcp__server__name.json | 4 - model/attributes/mcp/mcp__server__title.json | 4 - .../attributes/mcp/mcp__server__version.json | 4 - model/attributes/mcp/mcp__session__id.json | 4 - model/attributes/mcp/mcp__tool__name.json | 4 - .../mcp/mcp__tool__result__content.json | 4 - .../mcp/mcp__tool__result__content_count.json | 4 - .../mcp/mcp__tool__result__is_error.json | 4 - model/attributes/mcp/mcp__transport.json | 4 - model/attributes/mdc/mdc__[key].json | 4 - .../messaging__destination__connection.json | 4 - .../messaging__destination__name.json | 4 - .../messaging__message__body__size.json | 4 - .../messaging__message__envelope__size.json | 4 - .../messaging/messaging__message__id.json | 4 - .../messaging__message__receive__latency.json | 4 - .../messaging__message__retry__count.json | 4 - .../messaging/messaging__operation__type.json | 4 - .../messaging/messaging__system.json | 4 - model/attributes/method.json | 4 - .../navigation/navigation__type.json | 4 - model/attributes/nel/nel__elapsed_time.json | 4 - model/attributes/nel/nel__phase.json | 4 - model/attributes/nel/nel__referrer.json | 4 - .../nel/nel__sampling_function.json | 4 - model/attributes/nel/nel__type.json | 4 - model/attributes/net/net__host__ip.json | 4 - model/attributes/net/net__host__name.json | 4 - model/attributes/net/net__host__port.json | 4 - model/attributes/net/net__peer__ip.json | 4 - model/attributes/net/net__peer__name.json | 4 - model/attributes/net/net__peer__port.json | 4 - model/attributes/net/net__protocol__name.json | 4 - .../net/net__protocol__version.json | 4 - model/attributes/net/net__sock__family.json | 4 - .../attributes/net/net__sock__host__addr.json | 4 - .../attributes/net/net__sock__host__port.json | 4 - .../attributes/net/net__sock__peer__addr.json | 4 - .../attributes/net/net__sock__peer__name.json | 4 - .../attributes/net/net__sock__peer__port.json | 4 - model/attributes/net/net__transport.json | 4 - .../network/network__local__address.json | 4 - .../network/network__local__port.json | 4 - .../network/network__peer__address.json | 4 - .../network/network__peer__port.json | 4 - .../network/network__protocol__name.json | 4 - .../network/network__protocol__version.json | 4 - .../network/network__transport.json | 4 - model/attributes/network/network__type.json | 4 - model/attributes/os/os__build_id.json | 4 - model/attributes/os/os__description.json | 4 - model/attributes/os/os__name.json | 4 - model/attributes/os/os__type.json | 4 - model/attributes/os/os__version.json | 4 - model/attributes/otel/otel__scope__name.json | 4 - .../attributes/otel/otel__scope__version.json | 4 - model/attributes/otel/otel__status_code.json | 4 - .../otel/otel__status_description.json | 4 - model/attributes/params/params__[key].json | 4 - model/attributes/previous_route.json | 4 - .../process/process__executable__name.json | 4 - model/attributes/process/process__pid.json | 4 - .../process__runtime__description.json | 4 - .../process/process__runtime__name.json | 4 - .../process/process__runtime__version.json | 4 - model/attributes/query/query__[key].json | 4 - model/attributes/release.json | 4 - .../remix/remix__action_form_data__[key].json | 4 - model/attributes/replay_id.json | 4 - .../resource__deployment__environment.json | 2 +- ...source__deployment__environment__name.json | 4 - .../resource__render_blocking_status.json | 4 - model/attributes/route.json | 4 - .../rpc/rpc__grpc__status_code.json | 4 - model/attributes/rpc/rpc__service.json | 4 - model/attributes/sentry/sentry__action.json | 4 - .../sentry/sentry__browser__name.json | 4 - .../sentry/sentry__browser__version.json | 4 - .../sentry/sentry__cancellation_reason.json | 4 - model/attributes/sentry/sentry__category.json | 4 - .../sentry/sentry__client_sample_rate.json | 4 - .../sentry/sentry__description.json | 4 - model/attributes/sentry/sentry__dist.json | 4 - model/attributes/sentry/sentry__domain.json | 4 - .../sentry/sentry__dsc__environment.json | 4 - .../sentry/sentry__dsc__public_key.json | 4 - .../sentry/sentry__dsc__release.json | 4 - .../sentry/sentry__dsc__sample_rate.json | 4 - .../sentry/sentry__dsc__sampled.json | 4 - .../sentry/sentry__dsc__trace_id.json | 4 - .../sentry/sentry__dsc__transaction.json | 4 - .../sentry/sentry__environment.json | 4 - .../sentry/sentry__exclusive_time.json | 4 - .../sentry/sentry__graphql__operation.json | 4 - model/attributes/sentry/sentry__group.json | 4 - .../sentry/sentry__http__prefetch.json | 4 - .../sentry__idle_span_finish_reason.json | 4 - .../attributes/sentry/sentry__is_remote.json | 4 - model/attributes/sentry/sentry__kind.json | 4 - .../sentry/sentry__log__sequence.json | 10 + .../sentry__message__parameter__[key].json | 4 - .../sentry/sentry__message__template.json | 4 - .../sentry/sentry__module__[key].json | 4 - .../sentry__nextjs__ssr__function__route.json | 4 - .../sentry__nextjs__ssr__function__type.json | 4 - .../sentry/sentry__normalized_db_query.json | 4 - .../sentry__normalized_db_query__hash.json | 4 - .../sentry__normalized_description.json | 4 - .../sentry__observed_timestamp_nanos.json | 4 - model/attributes/sentry/sentry__op.json | 4 - model/attributes/sentry/sentry__origin.json | 4 - model/attributes/sentry/sentry__platform.json | 4 - .../sentry/sentry__profiler_id.json | 4 - model/attributes/sentry/sentry__release.json | 4 - .../attributes/sentry/sentry__replay_id.json | 4 - .../sentry/sentry__replay_is_buffering.json | 4 - .../sentry/sentry__sdk__integrations.json | 4 - .../attributes/sentry/sentry__sdk__name.json | 4 - .../sentry/sentry__sdk__version.json | 4 - .../sentry/sentry__segment__id.json | 4 - .../sentry/sentry__segment__name.json | 4 - .../attributes/sentry/sentry__segment_id.json | 4 - .../sentry/sentry__server_sample_rate.json | 4 - .../sentry/sentry__span__source.json | 4 - .../sentry/sentry__status__message.json | 4 - .../sentry/sentry__status_code.json | 4 - .../sentry/sentry__timestamp__sequence.json | 10 - .../sentry/sentry__trace__parent_span_id.json | 4 - .../sentry/sentry__transaction.json | 4 - model/attributes/server/server__address.json | 4 - model/attributes/server/server__port.json | 4 - model/attributes/service/service__name.json | 4 - .../attributes/service/service__version.json | 4 - model/attributes/thread/thread__id.json | 4 - model/attributes/thread/thread__name.json | 4 - model/attributes/timber/timber__tag.json | 4 - model/attributes/transaction.json | 4 - model/attributes/type.json | 4 - model/attributes/ui/ui__component_name.json | 4 - .../ui/ui__contributes_to_ttfd.json | 4 - .../ui/ui__contributes_to_ttid.json | 4 - model/attributes/url.json | 4 - model/attributes/url/url__domain.json | 4 - model/attributes/url/url__fragment.json | 4 - model/attributes/url/url__full.json | 4 - model/attributes/url/url__path.json | 4 - .../url/url__path__parameter__[key].json | 4 - model/attributes/url/url__port.json | 4 - model/attributes/url/url__query.json | 4 - model/attributes/url/url__scheme.json | 4 - model/attributes/url/url__template.json | 4 - model/attributes/user/user__email.json | 4 - model/attributes/user/user__full_name.json | 4 - model/attributes/user/user__geo__city.json | 4 - .../user/user__geo__country_code.json | 4 - model/attributes/user/user__geo__region.json | 4 - .../user/user__geo__subdivision.json | 4 - model/attributes/user/user__hash.json | 4 - model/attributes/user/user__id.json | 4 - model/attributes/user/user__ip_address.json | 4 - model/attributes/user/user__name.json | 4 - model/attributes/user/user__roles.json | 4 - .../user_agent/user_agent__original.json | 4 - model/attributes/vercel/vercel__branch.json | 4 - model/attributes/vercel/vercel__build_id.json | 4 - .../vercel/vercel__deployment_id.json | 4 - .../vercel/vercel__destination.json | 4 - .../attributes/vercel/vercel__edge_type.json | 4 - .../attributes/vercel/vercel__entrypoint.json | 4 - .../vercel/vercel__execution_region.json | 4 - model/attributes/vercel/vercel__id.json | 4 - .../attributes/vercel/vercel__ja3_digest.json | 4 - .../attributes/vercel/vercel__ja4_digest.json | 4 - model/attributes/vercel/vercel__log_type.json | 4 - .../attributes/vercel/vercel__project_id.json | 4 - .../vercel/vercel__project_name.json | 4 - .../vercel/vercel__proxy__cache_id.json | 4 - .../vercel/vercel__proxy__client_ip.json | 4 - .../vercel/vercel__proxy__host.json | 4 - .../vercel/vercel__proxy__lambda_region.json | 4 - .../vercel/vercel__proxy__method.json | 4 - .../vercel/vercel__proxy__path.json | 4 - .../vercel/vercel__proxy__path_type.json | 4 - .../vercel__proxy__path_type_variant.json | 4 - .../vercel/vercel__proxy__referer.json | 4 - .../vercel/vercel__proxy__region.json | 4 - .../vercel__proxy__response_byte_size.json | 4 - .../vercel/vercel__proxy__scheme.json | 4 - .../vercel/vercel__proxy__status_code.json | 4 - .../vercel/vercel__proxy__timestamp.json | 4 - .../vercel/vercel__proxy__user_agent.json | 4 - .../vercel/vercel__proxy__vercel_cache.json | 4 - .../vercel/vercel__proxy__vercel_id.json | 4 - .../vercel/vercel__proxy__waf_action.json | 4 - .../vercel/vercel__proxy__waf_rule_id.json | 4 - .../attributes/vercel/vercel__request_id.json | 4 - model/attributes/vercel/vercel__source.json | 4 - .../vercel/vercel__status_code.json | 4 - python/src/sentry_conventions/attributes.py | 491 +----- shared/deprecated_attributes.json | 346 +--- 433 files changed, 511 insertions(+), 3479 deletions(-) create mode 100644 model/attributes/sentry/sentry__log__sequence.json delete mode 100644 model/attributes/sentry/sentry__timestamp__sequence.json diff --git a/javascript/sentry-conventions/src/attributes.ts b/javascript/sentry-conventions/src/attributes.ts index f836564b..2cf83c5d 100644 --- a/javascript/sentry-conventions/src/attributes.ts +++ b/javascript/sentry-conventions/src/attributes.ts @@ -6942,6 +6942,26 @@ export const SENTRY_KIND = 'sentry.kind'; */ export type SENTRY_KIND_TYPE = string; +// Path: model/attributes/sentry/sentry__log__sequence.json + +/** + * A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. `sentry.log.sequence` + * + * Attribute Value Type: `number` {@link SENTRY_LOG_SEQUENCE_TYPE} + * + * Contains PII: false + * + * Attribute defined in OTEL: No + * + * @example 42 + */ +export const SENTRY_LOG_SEQUENCE = 'sentry.log.sequence'; + +/** + * Type for {@link SENTRY_LOG_SEQUENCE} sentry.log.sequence + */ +export type SENTRY_LOG_SEQUENCE_TYPE = number; + // Path: model/attributes/sentry/sentry__message__parameter__[key].json /** @@ -7471,26 +7491,6 @@ export const SENTRY_STATUS_MESSAGE = 'sentry.status.message'; */ export type SENTRY_STATUS_MESSAGE_TYPE = string; -// Path: model/attributes/sentry/sentry__timestamp__sequence.json - -/** - * A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one. `sentry.timestamp.sequence` - * - * Attribute Value Type: `number` {@link SENTRY_TIMESTAMP_SEQUENCE_TYPE} - * - * Contains PII: false - * - * Attribute defined in OTEL: No - * - * @example 0 - */ -export const SENTRY_TIMESTAMP_SEQUENCE = 'sentry.timestamp.sequence'; - -/** - * Type for {@link SENTRY_TIMESTAMP_SEQUENCE} sentry.timestamp.sequence - */ -export type SENTRY_TIMESTAMP_SEQUENCE_TYPE = number; - // Path: model/attributes/sentry/sentry__trace__parent_span_id.json /** @@ -9328,6 +9328,7 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_IDLE_SPAN_FINISH_REASON]: 'string', [SENTRY_IS_REMOTE]: 'boolean', [SENTRY_KIND]: 'string', + [SENTRY_LOG_SEQUENCE]: 'integer', [SENTRY_MESSAGE_PARAMETER_KEY]: 'string', [SENTRY_MESSAGE_TEMPLATE]: 'string', [SENTRY_MODULE_KEY]: 'string', @@ -9354,7 +9355,6 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_SPAN_SOURCE]: 'string', [SENTRY_STATUS_CODE]: 'integer', [SENTRY_STATUS_MESSAGE]: 'string', - [SENTRY_TIMESTAMP_SEQUENCE]: 'integer', [SENTRY_TRACE_PARENT_SPAN_ID]: 'string', [SENTRY_TRANSACTION]: 'string', [SERVER_ADDRESS]: 'string', @@ -9760,6 +9760,7 @@ export type AttributeName = | typeof SENTRY_IDLE_SPAN_FINISH_REASON | typeof SENTRY_IS_REMOTE | typeof SENTRY_KIND + | typeof SENTRY_LOG_SEQUENCE | typeof SENTRY_MESSAGE_PARAMETER_KEY | typeof SENTRY_MESSAGE_TEMPLATE | typeof SENTRY_MODULE_KEY @@ -9786,7 +9787,6 @@ export type AttributeName = | typeof SENTRY_SPAN_SOURCE | typeof SENTRY_STATUS_CODE | typeof SENTRY_STATUS_MESSAGE - | typeof SENTRY_TIMESTAMP_SEQUENCE | typeof SENTRY_TRACE_PARENT_SPAN_ID | typeof SENTRY_TRANSACTION | typeof SERVER_ADDRESS @@ -9870,7 +9870,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['Citation 1', 'Citation 2'], deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -9887,12 +9887,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_USAGE_OUTPUT_TOKENS, GEN_AI_USAGE_COMPLETION_TOKENS], sdks: ['python'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [57, 61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57, 61] }, { version: '0.0.0' }], }, [AI_DOCUMENTS]: { brief: 'Documents or content chunks used as context for the AI model.', @@ -9904,7 +9899,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['document1.txt', 'document2.pdf'], deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -9920,10 +9915,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.response.finish_reason', }, aliases: [GEN_AI_RESPONSE_FINISH_REASONS], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [55, 57, 61, 108, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108, 127] }], }, [AI_FREQUENCY_PENALTY]: { brief: @@ -9939,7 +9931,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_FREQUENCY_PENALTY], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -9957,10 +9948,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.tool.name', }, aliases: [GEN_AI_TOOL_NAME], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [55, 57, 61, 108] }, - ], + changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108] }], }, [AI_GENERATION_ID]: { brief: 'Unique identifier for the completion.', @@ -9974,10 +9962,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.response.id', }, aliases: [GEN_AI_RESPONSE_ID], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [55, 57, 61, 108, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108, 127] }], }, [AI_INPUT_MESSAGES]: { brief: 'The input messages sent to the model', @@ -9992,7 +9977,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_MESSAGES], sdks: ['python'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [65, 119] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [65, 119] }, { version: '0.0.0' }], }, [AI_IS_SEARCH_REQUIRED]: { brief: 'Boolean indicating if the model needs to perform a search.', @@ -10004,7 +9989,7 @@ export const ATTRIBUTE_METADATA: Record = { example: false, deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10018,7 +10003,7 @@ export const ATTRIBUTE_METADATA: Record = { example: '{"user_id": 123, "session_id": "abc123"}', deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55, 127] }, ], }, @@ -10035,7 +10020,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_RESPONSE_MODEL], sdks: ['python'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [57, 61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [57, 61, 127] }, { version: '0.0.0' }], }, [AI_MODEL_PROVIDER]: { brief: 'The provider of the model.', @@ -10050,7 +10035,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_PROVIDER_NAME, GEN_AI_SYSTEM], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [253] }, { version: '0.1.0', prs: [57, 61, 108, 127] }, ], @@ -10067,10 +10051,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.pipeline.name', }, aliases: [GEN_AI_PIPELINE_NAME], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [53, 76, 108, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [53, 76, 108, 127] }], }, [AI_PREAMBLE]: { brief: @@ -10086,7 +10067,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_SYSTEM_INSTRUCTIONS], changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10104,7 +10085,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_PRESENCE_PENALTY], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10122,12 +10102,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_USAGE_PROMPT_TOKENS, GEN_AI_USAGE_INPUT_TOKENS], sdks: ['python'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [57, 61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57, 61] }, { version: '0.0.0' }], }, [AI_RAW_PROMPTING]: { brief: 'When enabled, the user’s prompt will be sent to the model without any pre-processing.', @@ -10139,7 +10114,7 @@ export const ATTRIBUTE_METADATA: Record = { example: true, deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10155,7 +10130,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.response.text', }, sdks: ['python'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [65, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [65, 127] }, { version: '0.0.0' }], }, [AI_RESPONSE_FORMAT]: { brief: 'For an AI model call, the format of the response', @@ -10167,7 +10142,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'json_object', deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55, 127] }, ], }, @@ -10181,7 +10156,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['climate change effects', 'renewable energy'], deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10195,7 +10170,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['search_result_1, search_result_2'], deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10211,10 +10186,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.request.seed', }, aliases: [GEN_AI_REQUEST_SEED], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [55, 57, 61, 108, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [55, 57, 61, 108, 127] }], }, [AI_STREAMING]: { brief: 'Whether the request was streamed back.', @@ -10229,7 +10201,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_RESPONSE_STREAMING], sdks: ['python'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [76, 108] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [76, 108] }, { version: '0.0.0' }], }, [AI_TAGS]: { brief: 'Tags that describe an AI pipeline step.', @@ -10241,7 +10213,7 @@ export const ATTRIBUTE_METADATA: Record = { example: '{"executed_function": "add_integers"}', deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55, 127] }, ], }, @@ -10259,7 +10231,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_TEMPERATURE], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10277,7 +10248,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_INPUT_MESSAGES], changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10292,10 +10263,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'gen_ai.request.available_tools', }, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [55, 65, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [55, 65, 127] }], }, [AI_TOOL_CALLS]: { brief: 'For an AI model call, the tool calls that were made.', @@ -10308,10 +10276,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'gen_ai.response.tool_calls', }, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [55, 65] }, - ], + changelog: [{ version: '0.1.0', prs: [55, 65] }], }, [AI_TOP_K]: { brief: @@ -10327,7 +10292,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_TOP_K], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10346,7 +10310,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_REQUEST_TOP_P], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [55, 57, 61, 108] }, ], @@ -10364,7 +10327,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_COST_TOTAL_TOKENS], changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [53] }, ], @@ -10382,12 +10345,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_USAGE_TOTAL_TOKENS], sdks: ['python'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [57, 61, 108] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57, 61, 108] }, { version: '0.0.0' }], }, [AI_WARNINGS]: { brief: 'Warning messages generated during model execution.', @@ -10399,7 +10357,7 @@ export const ATTRIBUTE_METADATA: Record = { example: ['Token limit exceeded'], deprecation: {}, changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.1.0', prs: [55] }, ], }, @@ -10411,7 +10369,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'cold', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [BLOCKED_MAIN_THREAD]: { brief: 'Whether the main thread was blocked by the span.', @@ -10421,7 +10379,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [BROWSER_NAME]: { brief: 'The name of the browser.', @@ -10432,7 +10390,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'Chrome', aliases: [SENTRY_BROWSER_NAME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127, 139] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127, 139] }, { version: '0.0.0' }], }, [BROWSER_REPORT_TYPE]: { brief: 'A browser report sent via reporting API..', @@ -10442,10 +10400,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'network-error', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [68, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [68, 127] }], }, [BROWSER_SCRIPT_INVOKER]: { brief: 'How a script was called in the browser.', @@ -10456,7 +10411,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'Window.requestAnimationFrame', sdks: ['browser'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [BROWSER_SCRIPT_INVOKER_TYPE]: { brief: 'Browser script entry point type.', @@ -10467,7 +10422,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'event-listener', sdks: ['browser'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [BROWSER_SCRIPT_SOURCE_CHAR_POSITION]: { brief: 'A number representing the script character position of the script.', @@ -10478,7 +10433,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 678, sdks: ['browser'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [BROWSER_VERSION]: { brief: 'The version of the browser.', @@ -10489,10 +10444,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '120.0.6099.130', aliases: [SENTRY_BROWSER_VERSION], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [59, 127, 139] }, - ], + changelog: [{ version: '0.1.0', prs: [59, 127, 139] }], }, [CACHE_HIT]: { brief: 'If the cache was hit during this span.', @@ -10503,7 +10455,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: true, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [CACHE_ITEM_SIZE]: { brief: 'The size of the requested item in the cache. In bytes.', @@ -10513,7 +10465,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 58, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CACHE_KEY]: { brief: 'The key of the cache accessed.', @@ -10524,7 +10476,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: ['my-cache-key', 'my-other-cache-key'], sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [CACHE_OPERATION]: { brief: 'The operation being performed on the cache.', @@ -10535,7 +10487,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'get', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [CACHE_TTL]: { brief: 'The ttl of the cache in seconds', @@ -10546,7 +10498,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 120, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CHANNEL]: { brief: 'The channel name that is being used.', @@ -10557,7 +10509,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'mail', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [CLIENT_ADDRESS]: { brief: @@ -10569,7 +10521,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'example.com', aliases: [HTTP_CLIENT_IP], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], }, [CLIENT_PORT]: { brief: 'Client port number.', @@ -10579,7 +10531,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 5432, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CLOUDFLARE_D1_DURATION]: { brief: 'The duration of a Cloudflare D1 operation.', @@ -10590,7 +10542,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 543, sdks: ['javascript-cloudflare'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CLOUDFLARE_D1_ROWS_READ]: { brief: 'The number of rows read in a Cloudflare D1 operation.', @@ -10601,7 +10553,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 12, sdks: ['javascript-cloudflare'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CLOUDFLARE_D1_ROWS_WRITTEN]: { brief: 'The number of rows written in a Cloudflare D1 operation.', @@ -10612,7 +10564,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 12, sdks: ['javascript-cloudflare'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CODE_FILEPATH]: { brief: @@ -10627,7 +10579,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.file.path', }, aliases: [CODE_FILE_PATH], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [CODE_FILE_PATH]: { brief: @@ -10639,7 +10591,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '/app/myapplication/http/handler/server.py', aliases: [CODE_FILEPATH], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [CODE_FUNCTION]: { brief: "The method or function name, or equivalent (usually rightmost part of the code unit's name).", @@ -10653,7 +10605,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.function.name', }, aliases: [CODE_FUNCTION_NAME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], }, [CODE_FUNCTION_NAME]: { brief: "The method or function name, or equivalent (usually rightmost part of the code unit's name).", @@ -10664,7 +10616,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'server_request', aliases: [CODE_FUNCTION], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [CODE_LINENO]: { brief: @@ -10679,12 +10631,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.line.number', }, aliases: [CODE_LINE_NUMBER], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61, 108] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61, 108] }, { version: '0.0.0' }], }, [CODE_LINE_NUMBER]: { brief: @@ -10696,7 +10643,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 42, aliases: [CODE_LINENO], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [CODE_NAMESPACE]: { brief: @@ -10711,7 +10658,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'code.function.name', reason: 'code.function.name should include the namespace.', }, - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], }, [CULTURE_CALENDAR]: { brief: 'The calendar system used by the culture.', @@ -10721,10 +10668,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'GregorianCalendar', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [243] }, - ], + changelog: [{ version: '0.4.0', prs: [243] }], }, [CULTURE_DISPLAY_NAME]: { brief: 'Human readable name of the culture.', @@ -10734,10 +10678,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'English (United States)', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [243] }, - ], + changelog: [{ version: '0.4.0', prs: [243] }], }, [CULTURE_IS_24_HOUR_FORMAT]: { brief: 'Whether the culture uses 24-hour time format.', @@ -10747,10 +10688,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [243] }, - ], + changelog: [{ version: '0.4.0', prs: [243] }], }, [CULTURE_LOCALE]: { brief: 'The locale identifier following RFC 4646.', @@ -10760,10 +10698,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'en-US', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [243] }, - ], + changelog: [{ version: '0.4.0', prs: [243] }], }, [CULTURE_TIMEZONE]: { brief: 'The timezone of the culture, as a geographic timezone identifier.', @@ -10773,10 +10708,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Europe/Vienna', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [243] }, - ], + changelog: [{ version: '0.4.0', prs: [243] }], }, [DB_COLLECTION_NAME]: { brief: 'The name of a collection (table, container) within the database.', @@ -10786,7 +10718,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'users', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [106, 127] }, { version: '0.0.0' }], }, [DB_NAME]: { brief: 'The name of the database being accessed.', @@ -10800,7 +10732,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.namespace', }, aliases: [DB_NAMESPACE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [DB_NAMESPACE]: { brief: 'The name of the database being accessed.', @@ -10811,7 +10743,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'customers', aliases: [DB_NAME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_OPERATION]: { brief: 'The name of the operation being executed.', @@ -10825,12 +10757,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.operation.name', }, aliases: [DB_OPERATION_NAME], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [199] }, - { version: '0.1.0', prs: [61, 127] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [199] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [DB_OPERATION_NAME]: { brief: 'The name of the operation being executed.', @@ -10841,7 +10768,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'SELECT', aliases: [DB_OPERATION], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_QUERY_PARAMETER_KEY]: { brief: @@ -10853,10 +10780,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, hasDynamicSuffix: true, example: "db.query.parameter.foo='123'", - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [103, 127] }], }, [DB_QUERY_SUMMARY]: { brief: @@ -10867,12 +10791,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'SELECT users;', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [208] }, - { version: '0.1.0', prs: [127] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [208] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_QUERY_TEXT]: { brief: @@ -10884,12 +10803,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'SELECT * FROM users WHERE id = $1', aliases: [DB_STATEMENT], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [208] }, - { version: '0.1.0', prs: [127] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [208] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_REDIS_CONNECTION]: { brief: 'The redis connection name.', @@ -10900,7 +10814,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'my-redis-instance', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_REDIS_PARAMETERS]: { brief: 'The array of command parameters given to a redis command.', @@ -10911,7 +10825,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: ['test', '*'], sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [DB_SQL_BINDINGS]: { brief: 'The array of query bindings.', @@ -10927,7 +10841,7 @@ export const ATTRIBUTE_METADATA: Record = { 'Instead of adding every binding in the db.sql.bindings attribute, add them as individual entires with db.query.parameter..', }, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [DB_STATEMENT]: { brief: 'The database statement being executed.', @@ -10941,12 +10855,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.query.text', }, aliases: [DB_QUERY_TEXT], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [199] }, - { version: '0.1.0', prs: [61, 127] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [199] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [DB_SYSTEM]: { brief: @@ -10961,12 +10870,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'db.system.name', }, aliases: [DB_SYSTEM_NAME], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [199, 224] }, - { version: '0.1.0', prs: [61, 127] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [199, 224] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [DB_SYSTEM_NAME]: { brief: @@ -10978,7 +10882,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'postgresql', aliases: [DB_SYSTEM], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [DB_USER]: { brief: 'The database user.', @@ -10988,7 +10892,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'fancy_user', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [DEVICE_BRAND]: { brief: 'The brand of the device.', @@ -10998,10 +10902,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Apple', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [116, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [116, 127] }], }, [DEVICE_FAMILY]: { brief: 'The family of the device.', @@ -11011,10 +10912,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'iPhone', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [116, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [116, 127] }], }, [DEVICE_MODEL]: { brief: 'The model of the device.', @@ -11024,10 +10922,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'iPhone 15 Pro Max', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [116, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [116, 127] }], }, [ENVIRONMENT]: { brief: 'The sentry environment.', @@ -11041,7 +10936,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.environment', }, aliases: [SENTRY_ENVIRONMENT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [ERROR_TYPE]: { brief: 'Describes a class of error the operation ended with.', @@ -11051,7 +10946,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'timeout', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [EVENT_ID]: { brief: 'The unique identifier for this event (log record)', @@ -11061,10 +10956,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1234567890, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [101] }, - ], + changelog: [{ version: '0.1.0', prs: [101] }], }, [EVENT_NAME]: { brief: 'The name that uniquely identifies this event (log record)', @@ -11074,10 +10966,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Process Payload', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [101, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [101, 127] }], }, [EXCEPTION_ESCAPED]: { brief: @@ -11088,7 +10977,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [EXCEPTION_MESSAGE]: { brief: 'The error message.', @@ -11098,7 +10987,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'ENOENT: no such file or directory', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [EXCEPTION_STACKTRACE]: { brief: @@ -11110,7 +10999,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'Exception in thread "main" java.lang.RuntimeException: Test exception\n at com.example.GenerateTrace.methodB(GenerateTrace.java:13)\n at com.example.GenerateTrace.methodA(GenerateTrace.java:9)\n at com.example.GenerateTrace.main(GenerateTrace.java:5)', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [EXCEPTION_TYPE]: { brief: @@ -11121,7 +11010,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'OSError', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FAAS_COLDSTART]: { brief: 'A boolean that is true if the serverless function is executed for the first time (aka cold-start).', @@ -11131,7 +11020,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [FAAS_CRON]: { brief: 'A string containing the schedule period as Cron Expression.', @@ -11141,7 +11030,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '0/5 * * * ? *', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FAAS_TIME]: { brief: 'A string containing the function invocation time in the ISO 8601 format expressed in UTC.', @@ -11151,7 +11040,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '2020-01-23T13:47:06Z', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FAAS_TRIGGER]: { brief: 'Type of the trigger which caused this function invocation.', @@ -11161,7 +11050,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'timer', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [FLAG_EVALUATION_KEY]: { brief: @@ -11173,10 +11062,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, hasDynamicSuffix: true, example: 'flag.evaluation.is_new_ui=true', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103] }, - ], + changelog: [{ version: '0.1.0', prs: [103] }], }, [FRAMES_DELAY]: { brief: @@ -11187,7 +11073,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 5, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FRAMES_FROZEN]: { brief: 'The number of frozen frames rendered during the lifetime of the span.', @@ -11197,7 +11083,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 3, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FRAMES_SLOW]: { brief: 'The number of slow frames rendered during the lifetime of the span.', @@ -11207,7 +11093,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FRAMES_TOTAL]: { brief: 'The number of total frames rendered during the lifetime of the span.', @@ -11217,7 +11103,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 60, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [FS_ERROR]: { brief: 'The error message of a file system error.', @@ -11232,7 +11118,7 @@ export const ATTRIBUTE_METADATA: Record = { reason: 'This attribute is not part of the OpenTelemetry specification and error.type fits much better.', }, sdks: ['javascript-node'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [GEN_AI_AGENT_NAME]: { brief: 'The name of the agent being used.', @@ -11242,10 +11128,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'ResearchAssistant', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [62, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [62, 127] }], }, [GEN_AI_CONVERSATION_ID]: { brief: @@ -11256,10 +11139,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'conv_5j66UpCpwteGg4YSxUnt7lPY', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [250] }, - ], + changelog: [{ version: '0.4.0', prs: [250] }], }, [GEN_AI_COST_INPUT_TOKENS]: { brief: 'The cost of tokens used to process the AI input (prompt) in USD (without cached input tokens).', @@ -11270,7 +11150,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 123.45, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, ], @@ -11284,7 +11163,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 123.45, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, ], @@ -11299,7 +11177,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 12.34, aliases: [AI_TOTAL_COST], changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [126] }, ], @@ -11312,10 +11190,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: "What's the weather in Paris?", - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [195] }, - ], + changelog: [{ version: '0.3.1', prs: [195] }], }, [GEN_AI_INPUT_MESSAGES]: { brief: @@ -11329,7 +11204,7 @@ export const ATTRIBUTE_METADATA: Record = { '[{"role": "user", "parts": [{"type": "text", "content": "Weather in Paris?"}]}, {"role": "assistant", "parts": [{"type": "tool_call", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "name": "get_weather", "arguments": {"location": "Paris"}}]}, {"role": "tool", "parts": [{"type": "tool_call_response", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "result": "rainy, 57°F"}]}]', aliases: [AI_TEXTS], changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11343,7 +11218,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'chat', changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [225] }, { version: '0.1.0', prs: [62, 127] }, ], @@ -11358,7 +11232,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'tool', changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [257] }, { version: '0.1.0', prs: [113, 127] }, ], @@ -11373,10 +11246,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '[{"role": "assistant", "parts": [{"type": "text", "content": "The weather in Paris is currently rainy with a temperature of 57°F."}], "finish_reason": "stop"}]', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [221] }, - ], + changelog: [{ version: '0.4.0', prs: [221] }], }, [GEN_AI_PIPELINE_NAME]: { brief: 'Name of the AI pipeline or chain being executed.', @@ -11387,10 +11257,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'Autofix Pipeline', aliases: [AI_PIPELINE_NAME], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [76, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [76, 127] }], }, [GEN_AI_PROMPT]: { brief: 'The input messages sent to the model', @@ -11403,7 +11270,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { reason: 'Deprecated from OTEL, use gen_ai.input.messages with the new format instead.', }, - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [74, 108, 119] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [74, 108, 119] }, { version: '0.0.0' }], }, [GEN_AI_PROVIDER_NAME]: { brief: 'The Generative AI provider as identified by the client or server instrumentation.', @@ -11414,10 +11281,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'openai', aliases: [AI_MODEL_PROVIDER, GEN_AI_SYSTEM], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [253] }, - ], + changelog: [{ version: '0.4.0', prs: [253] }], }, [GEN_AI_REQUEST_AVAILABLE_TOOLS]: { brief: 'The available tools for the model. It has to be a stringified version of an array of objects.', @@ -11432,7 +11296,6 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.tool.definitions', }, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 127] }, ], @@ -11448,7 +11311,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.5, aliases: [AI_FREQUENCY_PENALTY], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11462,7 +11324,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 2048, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [62] }, ], @@ -11482,7 +11343,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [AI_INPUT_MESSAGES], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 74, 108, 119, 122] }, ], @@ -11495,10 +11355,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'gpt-4-turbo-preview', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [62, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [62, 127] }], }, [GEN_AI_REQUEST_PRESENCE_PENALTY]: { brief: @@ -11511,7 +11368,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.5, aliases: [AI_PRESENCE_PENALTY], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11525,10 +11381,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '1234567890', aliases: [AI_SEED], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [57, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [57, 127] }], }, [GEN_AI_REQUEST_TEMPERATURE]: { brief: @@ -11541,7 +11394,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.1, aliases: [AI_TEMPERATURE], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11557,7 +11409,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 35, aliases: [AI_TOP_K], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11573,7 +11424,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 0.7, aliases: [AI_TOP_P], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -11587,10 +11437,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'COMPLETE', aliases: [AI_FINISH_REASON], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [57, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [57, 127] }], }, [GEN_AI_RESPONSE_ID]: { brief: 'Unique identifier for the completion.', @@ -11601,10 +11448,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'gen_123abc', aliases: [AI_GENERATION_ID], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [57, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [57, 127] }], }, [GEN_AI_RESPONSE_MODEL]: { brief: 'The vendor-specific ID of the model used.', @@ -11615,7 +11459,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'gpt-4', aliases: [AI_MODEL_ID], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [GEN_AI_RESPONSE_STREAMING]: { brief: "Whether or not the AI model call's response was streamed back asynchronously", @@ -11626,10 +11470,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: true, aliases: [AI_STREAMING], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [76] }, - ], + changelog: [{ version: '0.1.0', prs: [76] }], }, [GEN_AI_RESPONSE_TEXT]: { brief: @@ -11645,7 +11486,6 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.output.messages', }, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 74] }, ], @@ -11658,10 +11498,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0.6853435, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [227] }, - ], + changelog: [{ version: '0.4.0', prs: [227] }], }, [GEN_AI_RESPONSE_TOKENS_PER_SECOND]: { brief: 'The total output tokens per seconds throughput', @@ -11672,7 +11509,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 12345.67, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [66] }, ], @@ -11689,7 +11525,6 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.output.messages', }, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [63, 74] }, ], @@ -11707,7 +11542,6 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [AI_MODEL_PROVIDER, GEN_AI_PROVIDER_NAME], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [253] }, { version: '0.1.0', prs: [57, 127] }, ], @@ -11722,7 +11556,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'You are a helpful assistant', aliases: [AI_PREAMBLE], changelog: [ - { version: 'next', prs: [264, 270] }, + { version: 'next', prs: [264] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11738,7 +11572,6 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.system_instructions', }, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [221] }, { version: '0.1.0', prs: [62] }, ], @@ -11753,7 +11586,7 @@ export const ATTRIBUTE_METADATA: Record = { example: '{"location": "Paris"}', aliases: [GEN_AI_TOOL_INPUT], changelog: [ - { version: 'next', prs: [265, 270] }, + { version: 'next', prs: [265] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11767,7 +11600,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'rainy, 57°F', aliases: [GEN_AI_TOOL_OUTPUT, GEN_AI_TOOL_MESSAGE], changelog: [ - { version: 'next', prs: [265, 270] }, + { version: 'next', prs: [265] }, { version: '0.4.0', prs: [221] }, ], }, @@ -11780,10 +11613,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '[{"type": "function", "name": "get_current_weather", "description": "Get the current weather in a given location", "parameters": {"type": "object", "properties": {"location": {"type": "string", "description": "The city and state, e.g. San Francisco, CA"}, "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}}, "required": ["location", "unit"]}}]', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [221] }, - ], + changelog: [{ version: '0.4.0', prs: [221] }], }, [GEN_AI_TOOL_DESCRIPTION]: { brief: 'The description of the tool being used.', @@ -11793,10 +11623,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Searches the web for current information about a topic', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [62, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [62, 127] }], }, [GEN_AI_TOOL_INPUT]: { brief: 'The input of the tool being used. It has to be a stringified version of the input to the tool.', @@ -11811,7 +11638,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_TOOL_CALL_ARGUMENTS], changelog: [ - { version: 'next', prs: [265, 270] }, + { version: 'next', prs: [265] }, { version: '0.1.0', prs: [63, 74] }, ], }, @@ -11828,7 +11655,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_TOOL_CALL_RESULT, GEN_AI_TOOL_OUTPUT], changelog: [ - { version: 'next', prs: [265, 270] }, + { version: 'next', prs: [265] }, { version: '0.1.0', prs: [62] }, ], }, @@ -11841,10 +11668,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'Flights', aliases: [AI_FUNCTION_CALL], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [57, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [57, 127] }], }, [GEN_AI_TOOL_OUTPUT]: { brief: 'The output of the tool being used. It has to be a stringified version of the output of the tool.', @@ -11859,7 +11683,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [GEN_AI_TOOL_CALL_RESULT, GEN_AI_TOOL_MESSAGE], changelog: [ - { version: 'next', prs: [265, 270] }, + { version: 'next', prs: [265] }, { version: '0.1.0', prs: [63, 74] }, ], }, @@ -11871,10 +11695,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'function', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [62, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [62, 127] }], }, [GEN_AI_USAGE_COMPLETION_TOKENS]: { brief: 'The number of tokens used in the GenAI response (completion).', @@ -11888,12 +11709,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.usage.output_tokens', }, aliases: [AI_COMPLETION_TOKENS_USED, GEN_AI_USAGE_OUTPUT_TOKENS], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [GEN_AI_USAGE_INPUT_TOKENS]: { brief: 'The number of tokens used to process the AI input (prompt) including cached input tokens.', @@ -11905,7 +11721,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 10, aliases: [AI_PROMPT_TOKENS_USED, GEN_AI_USAGE_PROMPT_TOKENS], changelog: [ - { version: 'next', prs: [261, 270] }, + { version: 'next', prs: [261] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, { version: '0.0.0' }, @@ -11920,7 +11736,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [62, 112] }, ], @@ -11933,10 +11748,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 100, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [217, 228] }, - ], + changelog: [{ version: '0.4.0', prs: [217, 228] }], }, [GEN_AI_USAGE_OUTPUT_TOKENS]: { brief: 'The number of tokens used for creating the AI output (including reasoning tokens).', @@ -11948,7 +11760,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 10, aliases: [AI_COMPLETION_TOKENS_USED, GEN_AI_USAGE_COMPLETION_TOKENS], changelog: [ - { version: 'next', prs: [261, 270] }, + { version: 'next', prs: [261] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [112] }, { version: '0.0.0' }, @@ -11963,7 +11775,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 75, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [62, 112] }, ], @@ -11980,12 +11791,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'gen_ai.usage.input_tokens', }, aliases: [AI_PROMPT_TOKENS_USED, GEN_AI_USAGE_INPUT_TOKENS], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [GEN_AI_USAGE_TOTAL_TOKENS]: { brief: 'The total number of tokens used to process the prompt. (input tokens plus output todkens)', @@ -11997,7 +11803,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 20, aliases: [AI_TOTAL_TOKENS_USED], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [57] }, ], @@ -12010,7 +11815,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'findBookById', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [GRAPHQL_OPERATION_TYPE]: { brief: 'The type of the operation being executed.', @@ -12020,7 +11825,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'query', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_CLIENT_IP]: { brief: @@ -12035,7 +11840,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'client.address', }, aliases: [CLIENT_ADDRESS], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 106, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 106, 127] }, { version: '0.0.0' }], }, [HTTP_DECODED_RESPONSE_CONTENT_LENGTH]: { brief: 'The decoded body size of the response (in bytes).', @@ -12046,7 +11851,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 456, sdks: ['javascript-browser'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_FLAVOR]: { brief: 'The actual version of the protocol used for network communication.', @@ -12060,7 +11865,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.protocol.version', }, aliases: [NETWORK_PROTOCOL_VERSION, NET_PROTOCOL_VERSION], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [HTTP_FRAGMENT]: { brief: @@ -12071,7 +11876,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '#details', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [HTTP_HOST]: { brief: 'The domain name.', @@ -12086,7 +11891,7 @@ export const ATTRIBUTE_METADATA: Record = { reason: 'Deprecated, use one of `server.address` or `client.address`, depending on the usage', }, aliases: [SERVER_ADDRESS, CLIENT_ADDRESS, HTTP_SERVER_NAME, NET_HOST_NAME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [HTTP_METHOD]: { brief: 'The HTTP method used.', @@ -12100,7 +11905,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.request.method', }, aliases: [HTTP_REQUEST_METHOD], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [HTTP_QUERY]: { brief: @@ -12113,7 +11918,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '?foo=bar&bar=baz', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [HTTP_REQUEST_CONNECTION_END]: { brief: @@ -12125,12 +11930,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.15, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_CONNECT_START]: { brief: @@ -12142,12 +11942,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.111, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_DOMAIN_LOOKUP_END]: { brief: @@ -12159,12 +11954,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.201, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_DOMAIN_LOOKUP_START]: { brief: @@ -12176,12 +11966,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.322, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_FETCH_START]: { brief: 'The UNIX timestamp representing the time immediately before the browser starts to fetch the resource.', @@ -12192,12 +11977,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.389, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_HEADER_KEY]: { brief: @@ -12210,7 +11990,6 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "http.request.header.custom-header=['foo', 'bar']", changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [201, 204] }, { version: '0.1.0', prs: [103] }, ], @@ -12224,7 +12003,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'GET', aliases: [METHOD, HTTP_METHOD], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_REQUEST_REDIRECT_END]: { brief: @@ -12237,7 +12016,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 1732829558.502, sdks: ['javascript-browser'], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [130, 134] }, ], @@ -12251,12 +12029,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.495, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_REQUEST_START]: { brief: @@ -12268,12 +12041,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.51, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_RESEND_COUNT]: { brief: 'The ordinal number of request resending attempt (for any reason, including redirects).', @@ -12283,7 +12051,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 2, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_REQUEST_RESPONSE_END]: { brief: @@ -12295,12 +12063,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.89, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_RESPONSE_START]: { brief: @@ -12312,12 +12075,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.7, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_SECURE_CONNECTION_START]: { brief: @@ -12329,12 +12087,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732829555.73, sdks: ['javascript-browser'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [134] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [134] }, { version: '0.0.0' }], }, [HTTP_REQUEST_TIME_TO_FIRST_BYTE]: { brief: @@ -12347,7 +12100,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 1.032, sdks: ['javascript-browser'], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [131] }, ], @@ -12363,7 +12115,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 1732829553.68, sdks: ['javascript-browser'], changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [130, 134] }, ], @@ -12377,12 +12128,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 123, aliases: [HTTP_RESPONSE_CONTENT_LENGTH, HTTP_RESPONSE_HEADER_CONTENT_LENGTH], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [106] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [106] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_CONTENT_LENGTH]: { brief: 'The encoded body size of the response (in bytes).', @@ -12396,12 +12142,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.response.body.size', }, aliases: [HTTP_RESPONSE_BODY_SIZE, HTTP_RESPONSE_HEADER_CONTENT_LENGTH], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61, 106] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61, 106] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_HEADER_CONTENT_LENGTH]: { brief: 'The size of the message body sent to the recipient (in bytes)', @@ -12412,7 +12153,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: "http.response.header.custom-header=['foo', 'bar']", aliases: [HTTP_RESPONSE_CONTENT_LENGTH, HTTP_RESPONSE_BODY_SIZE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_HEADER_KEY]: { brief: @@ -12425,7 +12166,6 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "http.response.header.custom-header=['foo', 'bar']", changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [201, 204] }, { version: '0.1.0', prs: [103] }, ], @@ -12439,7 +12179,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 456, aliases: [HTTP_RESPONSE_TRANSFER_SIZE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_STATUS_CODE]: { brief: 'The status code of the HTTP response.', @@ -12450,7 +12190,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 404, aliases: [HTTP_STATUS_CODE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [HTTP_RESPONSE_TRANSFER_SIZE]: { brief: 'The transfer size of the response (in bytes).', @@ -12464,12 +12204,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.response.size', }, aliases: [HTTP_RESPONSE_SIZE], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [HTTP_ROUTE]: { brief: 'The matched route, that is, the path template in the format used by the respective server framework.', @@ -12480,7 +12215,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '/users/:id', aliases: [URL_TEMPLATE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [HTTP_SCHEME]: { brief: 'The URI scheme component identifying the used protocol.', @@ -12494,7 +12229,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.scheme', }, aliases: [URL_SCHEME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [HTTP_SERVER_NAME]: { brief: 'The server domain name', @@ -12508,7 +12243,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.address', }, aliases: [SERVER_ADDRESS, NET_HOST_NAME, HTTP_HOST], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [HTTP_SERVER_REQUEST_TIME_IN_QUEUE]: { brief: @@ -12520,7 +12255,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, sdks: ['ruby'], - changelog: [{ version: 'next', prs: [267, 270] }], + changelog: [{ version: 'next', prs: [267] }], }, [HTTP_STATUS_CODE]: { brief: 'The status code of the HTTP response.', @@ -12534,12 +12269,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'http.response.status_code', }, aliases: [HTTP_RESPONSE_STATUS_CODE], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [HTTP_TARGET]: { brief: 'The pathname and query string of the URL.', @@ -12553,7 +12283,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.path', reason: 'This attribute is being deprecated in favor of url.path and url.query', }, - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [HTTP_URL]: { brief: 'The URL of the resource that was fetched.', @@ -12567,7 +12297,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.full', }, aliases: [URL_FULL, URL], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108] }, { version: '0.0.0' }], }, [HTTP_USER_AGENT]: { brief: 'Value of the HTTP User-Agent header sent by the client.', @@ -12582,7 +12312,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'user_agent.original', }, aliases: [USER_AGENT_ORIGINAL], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [ID]: { brief: 'A unique identifier for the span.', @@ -12593,7 +12323,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'f47ac10b58cc4372a5670e02b2c3d479', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [JVM_GC_ACTION]: { brief: 'Name of the garbage collector action.', @@ -12603,7 +12333,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'end of minor GC', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_GC_NAME]: { brief: 'Name of the garbage collector.', @@ -12613,7 +12343,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'G1 Young Generation', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_MEMORY_POOL_NAME]: { brief: 'Name of the memory pool.', @@ -12623,7 +12353,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'G1 Old Gen', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_MEMORY_TYPE]: { brief: 'Name of the memory pool.', @@ -12633,7 +12363,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'G1 Old Gen', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [JVM_THREAD_DAEMON]: { brief: 'Whether the thread is daemon or not.', @@ -12643,7 +12373,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [JVM_THREAD_STATE]: { brief: 'State of the thread.', @@ -12653,7 +12383,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'blocked', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LCP_ELEMENT]: { brief: 'The dom element responsible for the largest contentful paint.', @@ -12663,7 +12393,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'img', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LCP_ID]: { brief: 'The id of the dom element responsible for the largest contentful paint.', @@ -12673,7 +12403,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '#hero', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LCP_SIZE]: { brief: 'The size of the largest contentful paint element.', @@ -12683,7 +12413,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1234, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [LCP_URL]: { brief: 'The url of the dom element responsible for the largest contentful paint.', @@ -12693,7 +12423,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https://example.com', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [LOGGER_NAME]: { brief: 'The name of the logger that generated this event.', @@ -12703,7 +12433,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'myLogger', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MCP_CANCELLED_REASON]: { brief: 'Reason for the cancellation of an MCP operation.', @@ -12714,10 +12444,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'User cancelled the request', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_CANCELLED_REQUEST_ID]: { brief: 'Request ID of the cancelled MCP operation.', @@ -12727,10 +12454,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '123', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_CLIENT_NAME]: { brief: 'Name of the MCP client application.', @@ -12740,10 +12464,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'claude-desktop', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_CLIENT_TITLE]: { brief: 'Display title of the MCP client application.', @@ -12754,10 +12475,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Claude Desktop', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_CLIENT_VERSION]: { brief: 'Version of the MCP client application.', @@ -12767,10 +12485,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1.0.0', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_LIFECYCLE_PHASE]: { brief: 'Lifecycle phase indicator for MCP operations.', @@ -12780,10 +12495,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'initialization_complete', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_LOGGING_DATA_TYPE]: { brief: 'Data type of the logged message content.', @@ -12793,10 +12505,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'string', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_LOGGING_LEVEL]: { brief: 'Log level for MCP logging operations.', @@ -12806,10 +12515,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'info', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_LOGGING_LOGGER]: { brief: 'Logger name for MCP logging operations.', @@ -12820,10 +12526,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'mcp_server', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_LOGGING_MESSAGE]: { brief: 'Log message content from MCP logging operations.', @@ -12834,10 +12537,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Tool execution completed successfully', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_METHOD_NAME]: { brief: 'The name of the MCP request or notification method being called.', @@ -12847,10 +12547,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'tools/call', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROGRESS_CURRENT]: { brief: 'Current progress value of an MCP operation.', @@ -12861,7 +12558,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12875,10 +12571,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Processing 50 of 100 items', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROGRESS_PERCENTAGE]: { brief: 'Calculated progress percentage of an MCP operation. Computed from current/total * 100.', @@ -12889,7 +12582,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 50, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12902,10 +12594,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'progress-token-123', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROGRESS_TOTAL]: { brief: 'Total progress target value of an MCP operation.', @@ -12916,7 +12605,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 100, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12930,10 +12618,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'summarize', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROMPT_RESULT_DESCRIPTION]: { brief: 'Description of the prompt result.', @@ -12943,10 +12628,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'A summary of the requested information', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROMPT_RESULT_MESSAGE_CONTENT]: { brief: 'Content of the message in the prompt result. Used for single message results only.', @@ -12956,10 +12638,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Please provide a summary of the document', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROMPT_RESULT_MESSAGE_COUNT]: { brief: 'Number of messages in the prompt result.', @@ -12970,7 +12649,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 3, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -12983,10 +12661,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'user', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_PROTOCOL_READY]: { brief: 'Protocol readiness indicator for MCP session. Non-zero value indicates the protocol is ready.', @@ -12997,7 +12672,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -13010,10 +12684,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '2024-11-05', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_REQUEST_ARGUMENT_KEY]: { brief: @@ -13026,10 +12697,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, hasDynamicSuffix: true, example: "mcp.request.argument.query='weather in Paris'", - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [176] }, - ], + changelog: [{ version: '0.3.0', prs: [176] }], }, [MCP_REQUEST_ARGUMENT_NAME]: { brief: 'Name argument from prompts/get MCP request.', @@ -13040,10 +12708,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'summarize', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_REQUEST_ARGUMENT_URI]: { brief: 'URI argument from resources/read MCP request.', @@ -13054,10 +12719,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'file:///path/to/resource', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_REQUEST_ID]: { brief: 'JSON-RPC request identifier for the MCP request. Unique within the MCP session.', @@ -13067,10 +12729,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_RESOURCE_PROTOCOL]: { brief: 'Protocol of the resource URI being accessed, extracted from the URI.', @@ -13080,10 +12739,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'file', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_RESOURCE_URI]: { brief: 'The resource URI being accessed in an MCP operation.', @@ -13094,10 +12750,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'file:///path/to/file.txt', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_SERVER_NAME]: { brief: 'Name of the MCP server application.', @@ -13107,10 +12760,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sentry-mcp-server', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_SERVER_TITLE]: { brief: 'Display title of the MCP server application.', @@ -13121,10 +12771,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Sentry MCP Server', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_SERVER_VERSION]: { brief: 'Version of the MCP server application.', @@ -13134,10 +12781,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '0.1.0', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_SESSION_ID]: { brief: 'Identifier for the MCP session.', @@ -13147,10 +12791,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '550e8400-e29b-41d4-a716-446655440000', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_TOOL_NAME]: { brief: 'Name of the MCP tool being called.', @@ -13160,10 +12801,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'calculator', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_TOOL_RESULT_CONTENT]: { brief: 'The content of the tool result.', @@ -13175,7 +12813,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '{"output": "rainy", "toolCallId": "1"}', changelog: [ - { version: 'next', prs: [270] }, { version: '0.3.0', prs: [171] }, { version: '0.2.0', prs: [164] }, ], @@ -13189,7 +12826,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [171] }, ], @@ -13202,10 +12838,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: false, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MCP_TRANSPORT]: { brief: 'Transport method used for MCP communication.', @@ -13215,10 +12848,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'stdio', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [171] }, - ], + changelog: [{ version: '0.3.0', prs: [171] }], }, [MDC_KEY]: { brief: @@ -13231,10 +12861,7 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "mdc.some_key='some_value'", sdks: ['java', 'java.logback', 'java.jul', 'java.log4j2'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [176] }, - ], + changelog: [{ version: '0.3.0', prs: [176] }], }, [MESSAGING_DESTINATION_CONNECTION]: { brief: 'The message destination connection.', @@ -13245,7 +12872,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'BestTopic', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MESSAGING_DESTINATION_NAME]: { brief: 'The message destination name.', @@ -13256,7 +12883,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'BestTopic', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_BODY_SIZE]: { brief: 'The size of the message body in bytes.', @@ -13267,7 +12894,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 839, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_ENVELOPE_SIZE]: { brief: 'The size of the message body and metadata in bytes.', @@ -13278,7 +12905,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 1045, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_ID]: { brief: 'A value used by the messaging system as an identifier for the message, represented as a string.', @@ -13289,7 +12916,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'f47ac10b58cc4372a5670e02b2c3d479', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_RECEIVE_LATENCY]: { brief: 'The latency between when the message was published and received.', @@ -13300,7 +12927,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1732847252, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_MESSAGE_RETRY_COUNT]: { brief: 'The amount of attempts to send the message.', @@ -13311,7 +12938,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 2, sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [MESSAGING_OPERATION_TYPE]: { brief: 'A string identifying the type of the messaging operation', @@ -13321,10 +12948,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'create', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [51, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [51, 127] }], }, [MESSAGING_SYSTEM]: { brief: 'The messaging system as identified by the client instrumentation.', @@ -13335,7 +12959,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'activemq', sdks: ['php-laravel'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [METHOD]: { brief: 'The HTTP method used.', @@ -13350,7 +12974,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [HTTP_REQUEST_METHOD], sdks: ['javascript-browser', 'javascript-node'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NAVIGATION_TYPE]: { brief: 'The type of navigation done by a client-side router.', @@ -13360,7 +12984,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'router.push', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NEL_ELAPSED_TIME]: { brief: @@ -13372,7 +12996,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 100, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [68] }, ], @@ -13385,10 +13008,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'application', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [68, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [68, 127] }], }, [NEL_REFERRER]: { brief: "request's referrer, as determined by the referrer policy associated with its client.", @@ -13398,10 +13018,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https://example.com/foo?bar=baz', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [68, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [68, 127] }], }, [NEL_SAMPLING_FUNCTION]: { brief: 'The sampling function used to determine if the request should be sampled.', @@ -13412,7 +13029,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 0.5, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [68] }, ], @@ -13425,10 +13041,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'dns.unreachable', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [68, 127] }, - ], + changelog: [{ version: '0.1.0', prs: [68, 127] }], }, [NETWORK_LOCAL_ADDRESS]: { brief: 'Local address of the network connection - IP address or Unix domain socket name.', @@ -13439,7 +13052,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '10.1.2.80', aliases: [NET_HOST_IP, NET_SOCK_HOST_ADDR], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_LOCAL_PORT]: { brief: 'Local port number of the network connection.', @@ -13450,7 +13063,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 65400, aliases: [NET_SOCK_HOST_PORT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [NETWORK_PEER_ADDRESS]: { brief: 'Peer address of the network connection - IP address or Unix domain socket name.', @@ -13461,7 +13074,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '10.1.2.80', aliases: [NET_PEER_IP, NET_SOCK_PEER_ADDR], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], }, [NETWORK_PEER_PORT]: { brief: 'Peer port number of the network connection.', @@ -13471,7 +13084,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 65400, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [NETWORK_PROTOCOL_NAME]: { brief: 'OSI application layer or non-OSI equivalent.', @@ -13482,7 +13095,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'http', aliases: [NET_PROTOCOL_NAME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_PROTOCOL_VERSION]: { brief: 'The actual version of the protocol used for network communication.', @@ -13493,7 +13106,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '1.1', aliases: [HTTP_FLAVOR, NET_PROTOCOL_VERSION], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_TRANSPORT]: { brief: 'OSI transport layer or inter-process communication method.', @@ -13504,7 +13117,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'tcp', aliases: [NET_TRANSPORT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NETWORK_TYPE]: { brief: 'OSI network layer or non-OSI equivalent.', @@ -13514,7 +13127,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'ipv4', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [NET_HOST_IP]: { brief: 'Local address of the network connection - IP address or Unix domain socket name.', @@ -13528,7 +13141,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.local.address', }, aliases: [NETWORK_LOCAL_ADDRESS, NET_SOCK_HOST_ADDR], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_HOST_NAME]: { brief: @@ -13543,7 +13156,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.address', }, aliases: [SERVER_ADDRESS, HTTP_SERVER_NAME, HTTP_HOST], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_HOST_PORT]: { brief: 'Server port number.', @@ -13557,12 +13170,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.port', }, aliases: [SERVER_PORT], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [NET_PEER_IP]: { brief: 'Peer address of the network connection - IP address or Unix domain socket name.', @@ -13576,7 +13184,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.peer.address', }, aliases: [NETWORK_PEER_ADDRESS, NET_SOCK_PEER_ADDR], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_PEER_NAME]: { brief: @@ -13591,7 +13199,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.address', reason: 'Deprecated, use server.address on client spans and client.address on server spans.', }, - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NET_PEER_PORT]: { brief: 'Peer port number.', @@ -13605,12 +13213,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'server.port', reason: 'Deprecated, use server.port on client spans and client.port on server spans.', }, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [NET_PROTOCOL_NAME]: { brief: 'OSI application layer or non-OSI equivalent.', @@ -13624,7 +13227,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.protocol.name', }, aliases: [NETWORK_PROTOCOL_NAME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NET_PROTOCOL_VERSION]: { brief: 'The actual version of the protocol used for network communication.', @@ -13638,7 +13241,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.protocol.version', }, aliases: [NETWORK_PROTOCOL_VERSION, HTTP_FLAVOR], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_SOCK_FAMILY]: { brief: 'OSI transport and network layer', @@ -13652,7 +13255,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.transport', reason: 'Deprecated, use network.transport and network.type.', }, - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [NET_SOCK_HOST_ADDR]: { brief: 'Local address of the network connection mapping to Unix domain socket name.', @@ -13666,7 +13269,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.local.address', }, aliases: [NETWORK_LOCAL_ADDRESS, NET_HOST_IP], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_SOCK_HOST_PORT]: { brief: 'Local port number of the network connection.', @@ -13680,12 +13283,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.local.port', }, aliases: [NETWORK_LOCAL_PORT], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [NET_SOCK_PEER_ADDR]: { brief: 'Peer address of the network connection - IP address', @@ -13699,7 +13297,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.peer.address', }, aliases: [NETWORK_PEER_ADDRESS, NET_PEER_IP], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 108, 127] }, { version: '0.0.0' }], }, [NET_SOCK_PEER_NAME]: { brief: 'Peer address of the network connection - Unix domain socket name', @@ -13712,7 +13310,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { reason: 'Deprecated from OTEL, no replacement at this time', }, - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 119, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 119, 127] }, { version: '0.0.0' }], }, [NET_SOCK_PEER_PORT]: { brief: 'Peer port number of the network connection.', @@ -13725,12 +13323,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'network.peer.port', }, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.1.0', prs: [61] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [NET_TRANSPORT]: { brief: 'OSI transport layer or inter-process communication method.', @@ -13744,7 +13337,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'network.transport', }, aliases: [NETWORK_TRANSPORT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [OS_BUILD_ID]: { brief: 'The build ID of the operating system.', @@ -13754,7 +13347,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '1234567890', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_DESCRIPTION]: { brief: @@ -13765,7 +13358,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Ubuntu 18.04.1 LTS', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_NAME]: { brief: 'Human readable operating system name.', @@ -13775,7 +13368,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Ubuntu', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_TYPE]: { brief: 'The operating system type.', @@ -13785,7 +13378,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'linux', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OS_VERSION]: { brief: 'The version of the operating system.', @@ -13795,7 +13388,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '18.04.2', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_SCOPE_NAME]: { brief: 'The name of the instrumentation scope - (InstrumentationScope.Name in OTLP).', @@ -13805,7 +13398,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'io.opentelemetry.contrib.mongodb', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_SCOPE_VERSION]: { brief: 'The version of the instrumentation scope - (InstrumentationScope.Version in OTLP).', @@ -13815,7 +13408,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '2.4.5', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_STATUS_CODE]: { brief: 'Name of the code, either “OK” or “ERROR”. MUST NOT be set if the status code is UNSET.', @@ -13825,7 +13418,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'OK', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [OTEL_STATUS_DESCRIPTION]: { brief: 'Description of the Status if it has a value, otherwise not set.', @@ -13835,7 +13428,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'resource not found', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PARAMS_KEY]: { brief: @@ -13848,10 +13441,7 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "params.id='123'", aliases: [URL_PATH_PARAMETER_KEY], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103] }, - ], + changelog: [{ version: '0.1.0', prs: [103] }], }, [PREVIOUS_ROUTE]: { brief: 'Also used by mobile SDKs to indicate the previous route in the application.', @@ -13862,7 +13452,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'HomeScreen', sdks: ['javascript-reactnative'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [74] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [74] }, { version: '0.0.0' }], }, [PROCESS_EXECUTABLE_NAME]: { brief: 'The name of the executable that started the process.', @@ -13872,7 +13462,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'getsentry', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PROCESS_PID]: { brief: 'The process ID of the running process.', @@ -13882,7 +13472,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 12345, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [PROCESS_RUNTIME_DESCRIPTION]: { brief: @@ -13893,7 +13483,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'Eclipse OpenJ9 VM openj9-0.21.0', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PROCESS_RUNTIME_NAME]: { brief: 'The name of the runtime. Equivalent to `name` in the Sentry runtime context.', @@ -13903,7 +13493,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'node', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [PROCESS_RUNTIME_VERSION]: { brief: @@ -13914,7 +13504,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '18.04.2', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [QUERY_KEY]: { brief: 'An item in a query string. Usually added by client-side routing frameworks like vue-router.', @@ -13929,10 +13519,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'url.query', reason: 'Instead of sending items individually in query., they should be sent all together with url.query.', }, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103] }, - ], + changelog: [{ version: '0.1.0', prs: [103] }], }, [RELEASE]: { brief: 'The sentry release.', @@ -13946,7 +13533,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.release', }, aliases: [SENTRY_RELEASE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [REMIX_ACTION_FORM_DATA_KEY]: { brief: 'Remix form data, being the form data key, the value being the form data value.', @@ -13958,10 +13545,7 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "http.response.header.text='test'", sdks: ['javascript-remix'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103] }, - ], + changelog: [{ version: '0.1.0', prs: [103] }], }, [REPLAY_ID]: { brief: 'The id of the sentry replay.', @@ -13975,7 +13559,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.replay_id', }, aliases: [SENTRY_REPLAY_ID], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [RESOURCE_DEPLOYMENT_ENVIRONMENT]: { brief: 'The software deployment environment name.', @@ -13988,7 +13572,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'sentry.environment', }, - changelog: [{ version: 'next', prs: [266, 270] }], + changelog: [{ version: 'next', prs: [266] }], }, [RESOURCE_DEPLOYMENT_ENVIRONMENT_NAME]: { brief: 'The software deployment environment name.', @@ -14001,10 +13585,7 @@ export const ATTRIBUTE_METADATA: Record = { deprecation: { replacement: 'sentry.environment', }, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [196] }, - ], + changelog: [{ version: '0.3.1', prs: [196] }], }, [RESOURCE_RENDER_BLOCKING_STATUS]: { brief: 'The render blocking status of the resource.', @@ -14015,7 +13596,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'non-blocking', sdks: ['javascript-browser'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [ROUTE]: { brief: @@ -14031,7 +13612,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [HTTP_ROUTE], sdks: ['php-laravel', 'javascript-reactnative'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 74] }, { version: '0.0.0' }], }, [RPC_GRPC_STATUS_CODE]: { brief: 'The numeric status code of the gRPC request.', @@ -14041,7 +13622,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 2, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [RPC_SERVICE]: { brief: 'The full (logical) name of the service being called, including its package name, if applicable.', @@ -14051,7 +13632,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'myService.BestService', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [SENTRY_ACTION]: { brief: @@ -14062,10 +13643,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'SELECT', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [212] }, - ], + changelog: [{ version: '0.4.0', prs: [212] }], }, [SENTRY_BROWSER_NAME]: { brief: 'The name of the browser.', @@ -14079,10 +13657,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'browser.name', }, aliases: [BROWSER_NAME], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [139] }, - ], + changelog: [{ version: '0.1.0', prs: [139] }], }, [SENTRY_BROWSER_VERSION]: { brief: 'The version of the browser.', @@ -14096,10 +13671,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'browser.version', }, aliases: [BROWSER_VERSION], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [139] }, - ], + changelog: [{ version: '0.1.0', prs: [139] }], }, [SENTRY_CANCELLATION_REASON]: { brief: 'The reason why a span ended early.', @@ -14109,7 +13681,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'document.hidden', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_CATEGORY]: { brief: @@ -14120,10 +13692,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'db', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [218] }, - ], + changelog: [{ version: '0.4.0', prs: [218] }], }, [SENTRY_CLIENT_SAMPLE_RATE]: { brief: 'Rate at which a span was sampled in the SDK.', @@ -14133,10 +13702,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0.5, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [102] }, - ], + changelog: [{ version: '0.1.0', prs: [102] }], }, [SENTRY_DESCRIPTION]: { brief: 'The human-readable description of a span.', @@ -14146,10 +13712,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'index view query', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [135] }, - ], + changelog: [{ version: '0.1.0', prs: [135] }], }, [SENTRY_DIST]: { brief: 'The sentry dist.', @@ -14159,7 +13722,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1.0', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_DOMAIN]: { brief: @@ -14170,10 +13733,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'example.com', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [212] }, - ], + changelog: [{ version: '0.4.0', prs: [212] }], }, [SENTRY_DSC_ENVIRONMENT]: { brief: 'The environment from the dynamic sampling context.', @@ -14183,10 +13743,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'prod', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_DSC_PUBLIC_KEY]: { brief: 'The public key from the dynamic sampling context.', @@ -14196,10 +13753,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'c51734c603c4430eb57cb0a5728a479d', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_DSC_RELEASE]: { brief: 'The release identifier from the dynamic sampling context.', @@ -14209,10 +13763,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'frontend@e8211be71b214afab5b85de4b4c54be3714952bb', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_DSC_SAMPLED]: { brief: 'Whether the event was sampled according to the dynamic sampling context.', @@ -14222,10 +13773,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_DSC_SAMPLE_RATE]: { brief: 'The sample rate from the dynamic sampling context.', @@ -14235,10 +13783,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1.0', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_DSC_TRACE_ID]: { brief: 'The trace ID from the dynamic sampling context.', @@ -14248,10 +13793,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '047372980460430cbc78d9779df33a46', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_DSC_TRANSACTION]: { brief: 'The transaction name from the dynamic sampling context.', @@ -14261,10 +13803,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '/issues/errors-outages/', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_ENVIRONMENT]: { brief: 'The sentry environment.', @@ -14275,7 +13814,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'production', aliases: [ENVIRONMENT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_EXCLUSIVE_TIME]: { brief: 'The exclusive time duration of the span in milliseconds.', @@ -14285,12 +13824,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 1234, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [228] }, - { version: '0.3.0', prs: [160] }, - { version: '0.0.0' }, - ], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.3.0', prs: [160] }, { version: '0.0.0' }], }, [SENTRY_GRAPHQL_OPERATION]: { brief: 'Indicates the type of graphql operation, emitted by the Javascript SDK.', @@ -14300,10 +13834,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'getUserById', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [190] }, - ], + changelog: [{ version: '0.3.1', prs: [190] }], }, [SENTRY_GROUP]: { brief: @@ -14313,10 +13844,7 @@ export const ATTRIBUTE_METADATA: Record = { isPii: 'false', }, isInOtel: false, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [212] }, - ], + changelog: [{ version: '0.4.0', prs: [212] }], }, [SENTRY_HTTP_PREFETCH]: { brief: 'If an http request was a prefetch request.', @@ -14326,7 +13854,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_IDLE_SPAN_FINISH_REASON]: { brief: 'The reason why an idle span ended early.', @@ -14336,7 +13864,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'idleTimeout', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_IS_REMOTE]: { brief: "Indicates whether a span's parent is remote.", @@ -14346,10 +13874,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [190] }, - ], + changelog: [{ version: '0.3.1', prs: [190] }], }, [SENTRY_KIND]: { brief: @@ -14360,10 +13885,17 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'server', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [190] }, - ], + changelog: [{ version: '0.3.1', prs: [190] }], + }, + [SENTRY_LOG_SEQUENCE]: { + brief: + 'A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.', + type: 'integer', + pii: { + isPii: 'false', + }, + isInOtel: false, + example: 42, }, [SENTRY_MESSAGE_PARAMETER_KEY]: { brief: @@ -14374,10 +13906,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: "sentry.message.parameter.0='123'", - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [116] }, - ], + changelog: [{ version: '0.1.0', prs: [116] }], }, [SENTRY_MESSAGE_TEMPLATE]: { brief: 'The parameterized template string.', @@ -14387,10 +13916,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Hello, {name}!', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [116] }, - ], + changelog: [{ version: '0.1.0', prs: [116] }], }, [SENTRY_MODULE_KEY]: { brief: 'A module that was loaded in the process. The key is the name of the module.', @@ -14401,10 +13927,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, hasDynamicSuffix: true, example: "sentry.module.brianium/paratest='v7.7.0'", - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103] }, - ], + changelog: [{ version: '0.1.0', prs: [103] }], }, [SENTRY_NEXTJS_SSR_FUNCTION_ROUTE]: { brief: @@ -14416,10 +13939,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '/posts/[id]/layout', sdks: ['javascript'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [54, 106] }, - ], + changelog: [{ version: '0.1.0', prs: [54, 106] }], }, [SENTRY_NEXTJS_SSR_FUNCTION_TYPE]: { brief: @@ -14431,10 +13951,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'generateMetadata', sdks: ['javascript'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [54, 106] }, - ], + changelog: [{ version: '0.1.0', prs: [54, 106] }], }, [SENTRY_NORMALIZED_DB_QUERY]: { brief: 'The normalized version of `db.query.text`.', @@ -14444,10 +13961,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'SELECT .. FROM sentry_project WHERE (project_id = %s)', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [194] }, - ], + changelog: [{ version: '0.3.1', prs: [194] }], }, [SENTRY_NORMALIZED_DB_QUERY_HASH]: { brief: 'The hash of `sentry.normalized_db_query`.', @@ -14456,10 +13970,7 @@ export const ATTRIBUTE_METADATA: Record = { isPii: 'false', }, isInOtel: false, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [200] }, - ], + changelog: [{ version: '0.4.0', prs: [200] }], }, [SENTRY_NORMALIZED_DESCRIPTION]: { brief: @@ -14470,10 +13981,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'SELECT .. FROM sentry_project WHERE (project_id = %s)', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [212] }, - ], + changelog: [{ version: '0.4.0', prs: [212] }], }, [SENTRY_OBSERVED_TIMESTAMP_NANOS]: { brief: 'The timestamp at which an envelope was received by Relay, in nanoseconds.', @@ -14484,7 +13992,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '1544712660300000000', changelog: [ - { version: 'next', prs: [270] }, { version: '0.3.0', prs: [174] }, { version: '0.2.0', prs: [137] }, ], @@ -14497,7 +14004,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'http.client', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_ORIGIN]: { brief: 'The origin of the instrumentation (e.g. span, log, etc.)', @@ -14507,7 +14014,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'auto.http.otel.fastify', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [68] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [68] }, { version: '0.0.0' }], }, [SENTRY_PLATFORM]: { brief: 'The sdk platform that generated the event.', @@ -14517,7 +14024,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'php', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_PROFILER_ID]: { brief: 'The id of the currently running profiler (continuous profiling)', @@ -14527,10 +14034,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '18779b64dd35d1a538e7ce2dd2d3fad3', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [242] }, - ], + changelog: [{ version: '0.4.0', prs: [242] }], }, [SENTRY_RELEASE]: { brief: 'The sentry release.', @@ -14541,7 +14045,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '7.0.0', aliases: [SERVICE_VERSION, RELEASE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_REPLAY_ID]: { brief: 'The id of the sentry replay.', @@ -14552,7 +14056,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '123e4567e89b12d3a456426614174000', aliases: [REPLAY_ID], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_REPLAY_IS_BUFFERING]: { brief: @@ -14563,10 +14067,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [185] }, - ], + changelog: [{ version: '0.3.0', prs: [185] }], }, [SENTRY_SDK_INTEGRATIONS]: { brief: @@ -14577,10 +14078,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: ['InboundFilters', 'FunctionToString', 'BrowserApiErrors', 'Breadcrumbs'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.0.0', prs: [42] }, - ], + changelog: [{ version: '0.0.0', prs: [42] }], }, [SENTRY_SDK_NAME]: { brief: 'The sentry sdk name.', @@ -14590,7 +14088,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '@sentry/react', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_SDK_VERSION]: { brief: 'The sentry sdk version.', @@ -14600,7 +14098,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '7.0.0', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SENTRY_SEGMENT_ID]: { brief: 'The segment ID of a span', @@ -14611,10 +14109,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: '051581bf3cb55c13', aliases: [_SENTRY_SEGMENT_ID], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [107, 124] }, - ], + changelog: [{ version: '0.1.0', prs: [107, 124] }], }, [_SENTRY_SEGMENT_ID]: { brief: 'The segment ID of a span', @@ -14628,10 +14123,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.segment.id', }, aliases: [SENTRY_SEGMENT_ID], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [124] }, - ], + changelog: [{ version: '0.1.0', prs: [124] }], }, [SENTRY_SEGMENT_NAME]: { brief: 'The segment name of a span', @@ -14641,10 +14133,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'GET /user', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [104] }, - ], + changelog: [{ version: '0.1.0', prs: [104] }], }, [SENTRY_SERVER_SAMPLE_RATE]: { brief: 'Rate at which a span was sampled in Relay.', @@ -14654,10 +14143,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0.5, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [102] }, - ], + changelog: [{ version: '0.1.0', prs: [102] }], }, [SENTRY_SPAN_SOURCE]: { brief: @@ -14668,7 +14154,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'route', - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [214] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [214] }, { version: '0.0.0' }], }, [SENTRY_STATUS_CODE]: { brief: @@ -14679,10 +14165,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 200, - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.4.0', prs: [223, 228] }, - ], + changelog: [{ version: '0.4.0', prs: [223, 228] }], }, [SENTRY_STATUS_MESSAGE]: { brief: 'The from OTLP extracted status message.', @@ -14692,20 +14175,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'foobar', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.1', prs: [190] }, - ], - }, - [SENTRY_TIMESTAMP_SEQUENCE]: { - brief: - 'A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.', - type: 'integer', - pii: { - isPii: 'false', - }, - isInOtel: false, - example: 0, + changelog: [{ version: '0.3.1', prs: [190] }], }, [SENTRY_TRACE_PARENT_SPAN_ID]: { brief: @@ -14716,10 +14186,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'b0e6f15b45c36b12', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [116] }, - ], + changelog: [{ version: '0.1.0', prs: [116] }], }, [SENTRY_TRANSACTION]: { brief: 'The sentry transaction (segment name).', @@ -14730,7 +14197,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'GET /', aliases: [TRANSACTION], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [SERVER_ADDRESS]: { brief: @@ -14742,7 +14209,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'example.com', aliases: [HTTP_SERVER_NAME, NET_HOST_NAME, HTTP_HOST], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [108, 127] }, { version: '0.0.0' }], }, [SERVER_PORT]: { brief: 'Server port number.', @@ -14753,7 +14220,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 1337, aliases: [NET_HOST_PORT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [SERVICE_NAME]: { brief: 'Logical name of the service.', @@ -14763,7 +14230,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'omegastar', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [SERVICE_VERSION]: { brief: 'The version string of the service API or implementation. The format is not defined by these conventions.', @@ -14774,7 +14241,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '5.0.0', aliases: [SENTRY_RELEASE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [THREAD_ID]: { brief: 'Current “managed” thread ID.', @@ -14784,7 +14251,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 56, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [THREAD_NAME]: { brief: 'Current thread name.', @@ -14794,7 +14261,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'main', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [TIMBER_TAG]: { brief: 'The log tag provided by the timber logging framework.', @@ -14805,10 +14272,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'MyTag', sdks: ['sentry.java.android'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.3.0', prs: [183] }, - ], + changelog: [{ version: '0.3.0', prs: [183] }], }, [TRANSACTION]: { brief: 'The sentry transaction (segment name).', @@ -14822,7 +14286,7 @@ export const ATTRIBUTE_METADATA: Record = { replacement: 'sentry.transaction', }, aliases: [SENTRY_TRANSACTION], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61, 127] }, { version: '0.0.0' }], }, [TYPE]: { brief: 'More granular type of the operation happening.', @@ -14833,7 +14297,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 'fetch', sdks: ['javascript-browser', 'javascript-node'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [UI_COMPONENT_NAME]: { brief: 'The name of the associated component.', @@ -14843,7 +14307,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'HomeButton', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [UI_CONTRIBUTES_TO_TTFD]: { brief: 'Whether the span execution contributed to the TTFD (time to fully drawn) metric.', @@ -14853,7 +14317,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [UI_CONTRIBUTES_TO_TTID]: { brief: 'Whether the span execution contributed to the TTID (time to initial display) metric.', @@ -14863,7 +14327,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: true, - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [URL]: { brief: 'The URL of the resource that was fetched.', @@ -14878,7 +14342,7 @@ export const ATTRIBUTE_METADATA: Record = { }, aliases: [URL_FULL, HTTP_URL], sdks: ['javascript-browser', 'javascript-node'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [61] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [61] }, { version: '0.0.0' }], }, [URL_DOMAIN]: { brief: @@ -14889,7 +14353,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'example.com', - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [URL_FRAGMENT]: { brief: @@ -14900,7 +14364,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'details', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [URL_FULL]: { brief: 'The URL of the resource that was fetched.', @@ -14911,7 +14375,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'https://example.com/test?foo=bar#buzz', aliases: [HTTP_URL, URL], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [108] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [108] }, { version: '0.0.0' }], }, [URL_PATH]: { brief: 'The URI path component.', @@ -14921,7 +14385,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '/foo', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [URL_PATH_PARAMETER_KEY]: { brief: @@ -14934,10 +14398,7 @@ export const ATTRIBUTE_METADATA: Record = { hasDynamicSuffix: true, example: "url.path.parameter.id='123'", aliases: [PARAMS_KEY], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [103] }, - ], + changelog: [{ version: '0.1.0', prs: [103] }], }, [URL_PORT]: { brief: 'Server port number.', @@ -14947,7 +14408,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 1337, - changelog: [{ version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.0.0' }], + changelog: [{ version: '0.4.0', prs: [228] }, { version: '0.0.0' }], }, [URL_QUERY]: { brief: @@ -14960,7 +14421,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'foo=bar&bar=baz', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [URL_SCHEME]: { brief: 'The URI scheme component identifying the used protocol.', @@ -14971,7 +14432,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: 'https', aliases: [HTTP_SCHEME], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [URL_TEMPLATE]: { brief: 'The low-cardinality template of an absolute path reference.', @@ -14982,7 +14443,7 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: true, example: '/users/:id', aliases: [HTTP_ROUTE], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [USER_AGENT_ORIGINAL]: { brief: 'Value of the HTTP User-Agent header sent by the client.', @@ -14994,7 +14455,7 @@ export const ATTRIBUTE_METADATA: Record = { example: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1', aliases: [HTTP_USER_AGENT], - changelog: [{ version: 'next', prs: [270] }, { version: '0.1.0', prs: [127] }, { version: '0.0.0' }], + changelog: [{ version: '0.1.0', prs: [127] }, { version: '0.0.0' }], }, [USER_EMAIL]: { brief: 'User email address.', @@ -15004,7 +14465,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'test@example.com', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_FULL_NAME]: { brief: "User's full name.", @@ -15014,7 +14475,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'John Smith', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_GEO_CITY]: { brief: 'Human readable city name.', @@ -15024,7 +14485,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Toronto', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_GEO_COUNTRY_CODE]: { brief: 'Two-letter country code (ISO 3166-1 alpha-2).', @@ -15034,7 +14495,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'CA', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_GEO_REGION]: { brief: 'Human readable region name or code.', @@ -15044,7 +14505,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Canada', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_GEO_SUBDIVISION]: { brief: 'Human readable subdivision name.', @@ -15054,7 +14515,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'Ontario', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_HASH]: { brief: 'Unique user hash to correlate information for a user in anonymized form.', @@ -15064,7 +14525,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: '8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_ID]: { brief: 'Unique identifier of the user.', @@ -15074,7 +14535,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'S-1-5-21-202424912787-2692429404-2351956786-1000', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_IP_ADDRESS]: { brief: 'The IP address of the user.', @@ -15084,10 +14545,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '192.168.1.1', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.1.0', prs: [75] }, - ], + changelog: [{ version: '0.1.0', prs: [75] }], }, [USER_NAME]: { brief: 'Short name or login/username of the user.', @@ -15097,7 +14555,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: 'j.smith', - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [USER_ROLES]: { brief: 'Array of user roles at the time of the event.', @@ -15107,7 +14565,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: true, example: ['admin', 'editor'], - changelog: [{ version: 'next', prs: [270] }, { version: '0.0.0' }], + changelog: [{ version: '0.0.0' }], }, [VERCEL_BRANCH]: { brief: 'Git branch name for Vercel project', @@ -15117,10 +14575,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'main', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_BUILD_ID]: { brief: 'Identifier for the Vercel build (only present on build logs)', @@ -15130,10 +14585,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'bld_cotnkcr76', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_DEPLOYMENT_ID]: { brief: 'Identifier for the Vercel deployment', @@ -15143,10 +14595,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'dpl_233NRGRjVZX1caZrXWtz5g1TAksD', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_DESTINATION]: { brief: 'Origin of the external content in Vercel (only on external logs)', @@ -15156,10 +14605,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https://vitals.vercel-insights.com/v1', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_EDGE_TYPE]: { brief: 'Type of edge runtime in Vercel', @@ -15169,10 +14615,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'edge-function', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_ENTRYPOINT]: { brief: 'Entrypoint for the request in Vercel', @@ -15182,10 +14625,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'api/index.js', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_EXECUTION_REGION]: { brief: 'Region where the request is executed', @@ -15195,10 +14635,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_ID]: { brief: 'Unique identifier for the log entry in Vercel', @@ -15208,10 +14645,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '1573817187330377061717300000', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_JA3_DIGEST]: { brief: 'JA3 fingerprint digest of Vercel request', @@ -15221,10 +14655,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_JA4_DIGEST]: { brief: 'JA4 fingerprint digest', @@ -15234,10 +14665,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 't13d1516h2_8daaf6152771_02713d6af862', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_LOG_TYPE]: { brief: 'Vercel log output type', @@ -15247,10 +14675,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'stdout', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROJECT_ID]: { brief: 'Identifier for the Vercel project', @@ -15260,10 +14685,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'gdufoJxB6b9b1fEqr1jUtFkyavUU', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROJECT_NAME]: { brief: 'Name of the Vercel project', @@ -15273,10 +14695,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'my-app', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_CACHE_ID]: { brief: 'Original request ID when request is served from cache', @@ -15286,10 +14705,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'pdx1::v8g4b-1744143786684-93dafbc0f70d', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_CLIENT_IP]: { brief: 'Client IP address', @@ -15299,10 +14715,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '120.75.16.101', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_HOST]: { brief: 'Hostname of the request', @@ -15312,10 +14725,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'test.vercel.app', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_LAMBDA_REGION]: { brief: 'Region where lambda function executed', @@ -15325,10 +14735,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_METHOD]: { brief: 'HTTP method of the request', @@ -15338,10 +14745,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'GET', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_PATH]: { brief: 'Request path with query parameters', @@ -15351,10 +14755,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '/dynamic/some-value.json?route=some-value', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_PATH_TYPE]: { brief: 'How the request was served based on its path and project configuration', @@ -15364,10 +14765,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'func', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_PATH_TYPE_VARIANT]: { brief: 'Variant of the path type', @@ -15377,10 +14775,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'api', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_REFERER]: { brief: 'Referer of the request', @@ -15390,10 +14785,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '*.vercel.app', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_REGION]: { brief: 'Region where the request is processed', @@ -15403,10 +14795,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_RESPONSE_BYTE_SIZE]: { brief: 'Size of the response in bytes', @@ -15417,7 +14806,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1024, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -15430,10 +14818,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'https', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_STATUS_CODE]: { brief: 'HTTP status code of the proxy request', @@ -15444,7 +14829,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 200, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -15458,7 +14842,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 1573817250172, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -15471,10 +14854,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: ['Mozilla/5.0...'], - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_VERCEL_CACHE]: { brief: 'Cache status sent to the browser', @@ -15484,10 +14864,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'REVALIDATED', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_VERCEL_ID]: { brief: 'Vercel-specific identifier', @@ -15497,10 +14874,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'sfo1::abc123', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_WAF_ACTION]: { brief: 'Action taken by firewall rules', @@ -15510,10 +14884,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'deny', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_PROXY_WAF_RULE_ID]: { brief: 'ID of the firewall rule that matched', @@ -15523,10 +14894,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'rule_gAHz8jtSB1Gy', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_REQUEST_ID]: { brief: 'Identifier of the Vercel request', @@ -15536,10 +14904,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: '643af4e3-975a-4cc7-9e7a-1eda11539d90', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_SOURCE]: { brief: 'Origin of the Vercel log (build, edge, lambda, static, external, or firewall)', @@ -15549,10 +14914,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 'build', - changelog: [ - { version: 'next', prs: [270] }, - { version: '0.2.0', prs: [163] }, - ], + changelog: [{ version: '0.2.0', prs: [163] }], }, [VERCEL_STATUS_CODE]: { brief: 'HTTP status code of the request (-1 means no response returned and the lambda crashed)', @@ -15563,7 +14925,6 @@ export const ATTRIBUTE_METADATA: Record = { isInOtel: false, example: 200, changelog: [ - { version: 'next', prs: [270] }, { version: '0.4.0', prs: [228] }, { version: '0.2.0', prs: [163] }, ], @@ -15904,6 +15265,7 @@ export type Attributes = { [SENTRY_IDLE_SPAN_FINISH_REASON]?: SENTRY_IDLE_SPAN_FINISH_REASON_TYPE; [SENTRY_IS_REMOTE]?: SENTRY_IS_REMOTE_TYPE; [SENTRY_KIND]?: SENTRY_KIND_TYPE; + [SENTRY_LOG_SEQUENCE]?: SENTRY_LOG_SEQUENCE_TYPE; [SENTRY_MESSAGE_PARAMETER_KEY]?: SENTRY_MESSAGE_PARAMETER_KEY_TYPE; [SENTRY_MESSAGE_TEMPLATE]?: SENTRY_MESSAGE_TEMPLATE_TYPE; [SENTRY_MODULE_KEY]?: SENTRY_MODULE_KEY_TYPE; @@ -15930,7 +15292,6 @@ export type Attributes = { [SENTRY_SPAN_SOURCE]?: SENTRY_SPAN_SOURCE_TYPE; [SENTRY_STATUS_CODE]?: SENTRY_STATUS_CODE_TYPE; [SENTRY_STATUS_MESSAGE]?: SENTRY_STATUS_MESSAGE_TYPE; - [SENTRY_TIMESTAMP_SEQUENCE]?: SENTRY_TIMESTAMP_SEQUENCE_TYPE; [SENTRY_TRACE_PARENT_SPAN_ID]?: SENTRY_TRACE_PARENT_SPAN_ID_TYPE; [SENTRY_TRANSACTION]?: SENTRY_TRANSACTION_TYPE; [SERVER_ADDRESS]?: SERVER_ADDRESS_TYPE; diff --git a/model/attributes/ai/ai__citations.json b/model/attributes/ai/ai__citations.json index 98fc0cb7..8c9f0501 100644 --- a/model/attributes/ai/ai__citations.json +++ b/model/attributes/ai/ai__citations.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__completion_tokens__used.json b/model/attributes/ai/ai__completion_tokens__used.json index 8df86608..b576bac6 100644 --- a/model/attributes/ai/ai__completion_tokens__used.json +++ b/model/attributes/ai/ai__completion_tokens__used.json @@ -14,10 +14,6 @@ "replacement": "gen_ai.usage.output_tokens" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__documents.json b/model/attributes/ai/ai__documents.json index 4868e76b..1dc25189 100644 --- a/model/attributes/ai/ai__documents.json +++ b/model/attributes/ai/ai__documents.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__finish_reason.json b/model/attributes/ai/ai__finish_reason.json index fe07725a..67b35b6a 100644 --- a/model/attributes/ai/ai__finish_reason.json +++ b/model/attributes/ai/ai__finish_reason.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.response.finish_reasons"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] diff --git a/model/attributes/ai/ai__frequency_penalty.json b/model/attributes/ai/ai__frequency_penalty.json index 1187ff88..449092c8 100644 --- a/model/attributes/ai/ai__frequency_penalty.json +++ b/model/attributes/ai/ai__frequency_penalty.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.request.frequency_penalty"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__function_call.json b/model/attributes/ai/ai__function_call.json index 2935ec65..68c9c2f9 100644 --- a/model/attributes/ai/ai__function_call.json +++ b/model/attributes/ai/ai__function_call.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.tool.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108] diff --git a/model/attributes/ai/ai__generation_id.json b/model/attributes/ai/ai__generation_id.json index e1661af9..78474c8a 100644 --- a/model/attributes/ai/ai__generation_id.json +++ b/model/attributes/ai/ai__generation_id.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.response.id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] diff --git a/model/attributes/ai/ai__input_messages.json b/model/attributes/ai/ai__input_messages.json index 89ce953d..eaf43add 100644 --- a/model/attributes/ai/ai__input_messages.json +++ b/model/attributes/ai/ai__input_messages.json @@ -14,10 +14,6 @@ "replacement": "gen_ai.request.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [65, 119] diff --git a/model/attributes/ai/ai__is_search_required.json b/model/attributes/ai/ai__is_search_required.json index b07c9ccc..57334139 100644 --- a/model/attributes/ai/ai__is_search_required.json +++ b/model/attributes/ai/ai__is_search_required.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__metadata.json b/model/attributes/ai/ai__metadata.json index a55ecb11..113e82c3 100644 --- a/model/attributes/ai/ai__metadata.json +++ b/model/attributes/ai/ai__metadata.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__model__provider.json b/model/attributes/ai/ai__model__provider.json index 9d1575a6..632297ae 100644 --- a/model/attributes/ai/ai__model__provider.json +++ b/model/attributes/ai/ai__model__provider.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.provider.name", "gen_ai.system"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [253] diff --git a/model/attributes/ai/ai__model_id.json b/model/attributes/ai/ai__model_id.json index 1d03e0c4..2d1c463d 100644 --- a/model/attributes/ai/ai__model_id.json +++ b/model/attributes/ai/ai__model_id.json @@ -14,10 +14,6 @@ "replacement": "gen_ai.response.model" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [57, 61, 127] diff --git a/model/attributes/ai/ai__pipeline__name.json b/model/attributes/ai/ai__pipeline__name.json index bef50c60..384af716 100644 --- a/model/attributes/ai/ai__pipeline__name.json +++ b/model/attributes/ai/ai__pipeline__name.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.pipeline.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [53, 76, 108, 127] diff --git a/model/attributes/ai/ai__preamble.json b/model/attributes/ai/ai__preamble.json index efaba967..6c06fb5e 100644 --- a/model/attributes/ai/ai__preamble.json +++ b/model/attributes/ai/ai__preamble.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__presence_penalty.json b/model/attributes/ai/ai__presence_penalty.json index e7dd3b34..e9eebb38 100644 --- a/model/attributes/ai/ai__presence_penalty.json +++ b/model/attributes/ai/ai__presence_penalty.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.request.presence_penalty"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__prompt_tokens__used.json b/model/attributes/ai/ai__prompt_tokens__used.json index 0bdaaed4..06cdb154 100644 --- a/model/attributes/ai/ai__prompt_tokens__used.json +++ b/model/attributes/ai/ai__prompt_tokens__used.json @@ -14,10 +14,6 @@ "replacement": "gen_ai.usage.input_tokens" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__raw_prompting.json b/model/attributes/ai/ai__raw_prompting.json index 0dada49c..1d45951e 100644 --- a/model/attributes/ai/ai__raw_prompting.json +++ b/model/attributes/ai/ai__raw_prompting.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__response_format.json b/model/attributes/ai/ai__response_format.json index f63c7114..746ab085 100644 --- a/model/attributes/ai/ai__response_format.json +++ b/model/attributes/ai/ai__response_format.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__responses.json b/model/attributes/ai/ai__responses.json index 925613be..7ee72897 100644 --- a/model/attributes/ai/ai__responses.json +++ b/model/attributes/ai/ai__responses.json @@ -13,10 +13,6 @@ "replacement": "gen_ai.response.text" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [65, 127] diff --git a/model/attributes/ai/ai__search_queries.json b/model/attributes/ai/ai__search_queries.json index 98b6c7a2..aa0e3a86 100644 --- a/model/attributes/ai/ai__search_queries.json +++ b/model/attributes/ai/ai__search_queries.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__search_results.json b/model/attributes/ai/ai__search_results.json index 96954a9f..ca65bf9e 100644 --- a/model/attributes/ai/ai__search_results.json +++ b/model/attributes/ai/ai__search_results.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__seed.json b/model/attributes/ai/ai__seed.json index de594b89..a14a75f6 100644 --- a/model/attributes/ai/ai__seed.json +++ b/model/attributes/ai/ai__seed.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.request.seed"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] diff --git a/model/attributes/ai/ai__streaming.json b/model/attributes/ai/ai__streaming.json index 3d1c50c4..6d5eda59 100644 --- a/model/attributes/ai/ai__streaming.json +++ b/model/attributes/ai/ai__streaming.json @@ -14,10 +14,6 @@ }, "alias": ["gen_ai.response.streaming"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [76, 108] diff --git a/model/attributes/ai/ai__tags.json b/model/attributes/ai/ai__tags.json index 87365286..28487e1b 100644 --- a/model/attributes/ai/ai__tags.json +++ b/model/attributes/ai/ai__tags.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__temperature.json b/model/attributes/ai/ai__temperature.json index 18b10bed..1b0d72e7 100644 --- a/model/attributes/ai/ai__temperature.json +++ b/model/attributes/ai/ai__temperature.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.request.temperature"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__texts.json b/model/attributes/ai/ai__texts.json index e593342f..8c36f4c6 100644 --- a/model/attributes/ai/ai__texts.json +++ b/model/attributes/ai/ai__texts.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/ai/ai__tool_calls.json b/model/attributes/ai/ai__tool_calls.json index 5097d742..d769f419 100644 --- a/model/attributes/ai/ai__tool_calls.json +++ b/model/attributes/ai/ai__tool_calls.json @@ -12,10 +12,6 @@ "replacement": "gen_ai.response.tool_calls" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 65] diff --git a/model/attributes/ai/ai__tools.json b/model/attributes/ai/ai__tools.json index 59403e8d..11e7be1b 100644 --- a/model/attributes/ai/ai__tools.json +++ b/model/attributes/ai/ai__tools.json @@ -12,10 +12,6 @@ "replacement": "gen_ai.request.available_tools" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 65, 127] diff --git a/model/attributes/ai/ai__top_k.json b/model/attributes/ai/ai__top_k.json index a6767d2a..5135394c 100644 --- a/model/attributes/ai/ai__top_k.json +++ b/model/attributes/ai/ai__top_k.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.request.top_k"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__top_p.json b/model/attributes/ai/ai__top_p.json index 8714fc75..990ad95d 100644 --- a/model/attributes/ai/ai__top_p.json +++ b/model/attributes/ai/ai__top_p.json @@ -13,10 +13,6 @@ }, "alias": ["gen_ai.request.top_p"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__total_cost.json b/model/attributes/ai/ai__total_cost.json index 476c0c81..f491f3fd 100644 --- a/model/attributes/ai/ai__total_cost.json +++ b/model/attributes/ai/ai__total_cost.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.4.0", diff --git a/model/attributes/ai/ai__total_tokens__used.json b/model/attributes/ai/ai__total_tokens__used.json index 00a05423..65c6217a 100644 --- a/model/attributes/ai/ai__total_tokens__used.json +++ b/model/attributes/ai/ai__total_tokens__used.json @@ -14,10 +14,6 @@ }, "alias": ["gen_ai.usage.total_tokens"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/ai/ai__warnings.json b/model/attributes/ai/ai__warnings.json index a7c38441..a3b39441 100644 --- a/model/attributes/ai/ai__warnings.json +++ b/model/attributes/ai/ai__warnings.json @@ -13,7 +13,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", diff --git a/model/attributes/app_start_type.json b/model/attributes/app_start_type.json index 7131d342..a55e2192 100644 --- a/model/attributes/app_start_type.json +++ b/model/attributes/app_start_type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "cold", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/blocked_main_thread.json b/model/attributes/blocked_main_thread.json index 4be44843..177539e9 100644 --- a/model/attributes/blocked_main_thread.json +++ b/model/attributes/blocked_main_thread.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/browser/browser__name.json b/model/attributes/browser/browser__name.json index 7700c23d..ecd4feaf 100644 --- a/model/attributes/browser/browser__name.json +++ b/model/attributes/browser/browser__name.json @@ -9,10 +9,6 @@ "example": "Chrome", "alias": ["sentry.browser.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127, 139] diff --git a/model/attributes/browser/browser__report__type.json b/model/attributes/browser/browser__report__type.json index b6da90fa..fe08150e 100644 --- a/model/attributes/browser/browser__report__type.json +++ b/model/attributes/browser/browser__report__type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "network-error", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/browser/browser__script__invoker.json b/model/attributes/browser/browser__script__invoker.json index dfa85229..d7b563f7 100644 --- a/model/attributes/browser/browser__script__invoker.json +++ b/model/attributes/browser/browser__script__invoker.json @@ -9,10 +9,6 @@ "example": "Window.requestAnimationFrame", "sdks": ["browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/browser/browser__script__invoker_type.json b/model/attributes/browser/browser__script__invoker_type.json index 0f6a9597..a30804a4 100644 --- a/model/attributes/browser/browser__script__invoker_type.json +++ b/model/attributes/browser/browser__script__invoker_type.json @@ -9,10 +9,6 @@ "example": "event-listener", "sdks": ["browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/browser/browser__script__source_char_position.json b/model/attributes/browser/browser__script__source_char_position.json index 5eb0dd16..1b6facb4 100644 --- a/model/attributes/browser/browser__script__source_char_position.json +++ b/model/attributes/browser/browser__script__source_char_position.json @@ -9,10 +9,6 @@ "example": 678, "sdks": ["browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/browser/browser__version.json b/model/attributes/browser/browser__version.json index 5f8745cc..a363891a 100644 --- a/model/attributes/browser/browser__version.json +++ b/model/attributes/browser/browser__version.json @@ -9,10 +9,6 @@ "example": "120.0.6099.130", "alias": ["sentry.browser.version"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [59, 127, 139] diff --git a/model/attributes/cache/cache__hit.json b/model/attributes/cache/cache__hit.json index 064f8dab..9d9e9eb0 100644 --- a/model/attributes/cache/cache__hit.json +++ b/model/attributes/cache/cache__hit.json @@ -9,10 +9,6 @@ "example": true, "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/cache/cache__item_size.json b/model/attributes/cache/cache__item_size.json index 08474732..1f6cd339 100644 --- a/model/attributes/cache/cache__item_size.json +++ b/model/attributes/cache/cache__item_size.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 58, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cache/cache__key.json b/model/attributes/cache/cache__key.json index a9d8ef1c..a9e75095 100644 --- a/model/attributes/cache/cache__key.json +++ b/model/attributes/cache/cache__key.json @@ -9,10 +9,6 @@ "example": ["my-cache-key", "my-other-cache-key"], "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/cache/cache__operation.json b/model/attributes/cache/cache__operation.json index 525470de..b4e91e02 100644 --- a/model/attributes/cache/cache__operation.json +++ b/model/attributes/cache/cache__operation.json @@ -9,10 +9,6 @@ "example": "get", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/cache/cache__ttl.json b/model/attributes/cache/cache__ttl.json index 160363dd..3ecd7f75 100644 --- a/model/attributes/cache/cache__ttl.json +++ b/model/attributes/cache/cache__ttl.json @@ -9,10 +9,6 @@ "example": 120, "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/channel.json b/model/attributes/channel.json index 6bf010f2..7e4abe9e 100644 --- a/model/attributes/channel.json +++ b/model/attributes/channel.json @@ -9,10 +9,6 @@ "example": "mail", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/client/client__address.json b/model/attributes/client/client__address.json index 766bc184..e244aa93 100644 --- a/model/attributes/client/client__address.json +++ b/model/attributes/client/client__address.json @@ -9,10 +9,6 @@ "example": "example.com", "alias": ["http.client_ip"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [106, 127] diff --git a/model/attributes/client/client__port.json b/model/attributes/client/client__port.json index 95125376..a1cf9799 100644 --- a/model/attributes/client/client__port.json +++ b/model/attributes/client/client__port.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 5432, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cloudflare/cloudflare__d1__duration.json b/model/attributes/cloudflare/cloudflare__d1__duration.json index 25e83932..78d2a953 100644 --- a/model/attributes/cloudflare/cloudflare__d1__duration.json +++ b/model/attributes/cloudflare/cloudflare__d1__duration.json @@ -9,10 +9,6 @@ "example": 543, "sdks": ["javascript-cloudflare"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cloudflare/cloudflare__d1__rows_read.json b/model/attributes/cloudflare/cloudflare__d1__rows_read.json index 4def21bc..2d1f08dc 100644 --- a/model/attributes/cloudflare/cloudflare__d1__rows_read.json +++ b/model/attributes/cloudflare/cloudflare__d1__rows_read.json @@ -9,10 +9,6 @@ "example": 12, "sdks": ["javascript-cloudflare"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/cloudflare/cloudflare__d1__rows_written.json b/model/attributes/cloudflare/cloudflare__d1__rows_written.json index f112afb7..dd0f66f3 100644 --- a/model/attributes/cloudflare/cloudflare__d1__rows_written.json +++ b/model/attributes/cloudflare/cloudflare__d1__rows_written.json @@ -9,10 +9,6 @@ "example": 12, "sdks": ["javascript-cloudflare"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/code/code__file__path.json b/model/attributes/code/code__file__path.json index 1f7f9c65..c66f7ddb 100644 --- a/model/attributes/code/code__file__path.json +++ b/model/attributes/code/code__file__path.json @@ -9,10 +9,6 @@ "example": "/app/myapplication/http/handler/server.py", "alias": ["code.filepath"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/code/code__filepath.json b/model/attributes/code/code__filepath.json index 41b0c72a..f1e8a388 100644 --- a/model/attributes/code/code__filepath.json +++ b/model/attributes/code/code__filepath.json @@ -13,10 +13,6 @@ }, "alias": ["code.file.path"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/code/code__function.json b/model/attributes/code/code__function.json index d5291ac6..4b89de8a 100644 --- a/model/attributes/code/code__function.json +++ b/model/attributes/code/code__function.json @@ -13,10 +13,6 @@ }, "alias": ["code.function.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 74] diff --git a/model/attributes/code/code__function__name.json b/model/attributes/code/code__function__name.json index dbeacc56..16cc534d 100644 --- a/model/attributes/code/code__function__name.json +++ b/model/attributes/code/code__function__name.json @@ -9,10 +9,6 @@ "example": "server_request", "alias": ["code.function"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/code/code__line__number.json b/model/attributes/code/code__line__number.json index 8faeb952..7343f336 100644 --- a/model/attributes/code/code__line__number.json +++ b/model/attributes/code/code__line__number.json @@ -9,10 +9,6 @@ "example": 42, "alias": ["code.lineno"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/code/code__lineno.json b/model/attributes/code/code__lineno.json index df5cb5fc..24e199d7 100644 --- a/model/attributes/code/code__lineno.json +++ b/model/attributes/code/code__lineno.json @@ -13,10 +13,6 @@ }, "alias": ["code.line.number"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/code/code__namespace.json b/model/attributes/code/code__namespace.json index d2614431..08bef67c 100644 --- a/model/attributes/code/code__namespace.json +++ b/model/attributes/code/code__namespace.json @@ -13,10 +13,6 @@ "reason": "code.function.name should include the namespace." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 74] diff --git a/model/attributes/culture/culture__calendar.json b/model/attributes/culture/culture__calendar.json index 2374535b..b53c080c 100644 --- a/model/attributes/culture/culture__calendar.json +++ b/model/attributes/culture/culture__calendar.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "GregorianCalendar", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__display_name.json b/model/attributes/culture/culture__display_name.json index 51baf6ea..29178c8a 100644 --- a/model/attributes/culture/culture__display_name.json +++ b/model/attributes/culture/culture__display_name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "English (United States)", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__is_24_hour_format.json b/model/attributes/culture/culture__is_24_hour_format.json index 8ab3cebc..4c01dc7c 100644 --- a/model/attributes/culture/culture__is_24_hour_format.json +++ b/model/attributes/culture/culture__is_24_hour_format.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__locale.json b/model/attributes/culture/culture__locale.json index ad50bb85..e3858baa 100644 --- a/model/attributes/culture/culture__locale.json +++ b/model/attributes/culture/culture__locale.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "en-US", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/culture/culture__timezone.json b/model/attributes/culture/culture__timezone.json index c511c03f..204f34ff 100644 --- a/model/attributes/culture/culture__timezone.json +++ b/model/attributes/culture/culture__timezone.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Europe/Vienna", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [243] diff --git a/model/attributes/db/db__collection__name.json b/model/attributes/db/db__collection__name.json index 1eec5d40..86895425 100644 --- a/model/attributes/db/db__collection__name.json +++ b/model/attributes/db/db__collection__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "users", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [106, 127] diff --git a/model/attributes/db/db__name.json b/model/attributes/db/db__name.json index abe6916e..b18dc93f 100644 --- a/model/attributes/db/db__name.json +++ b/model/attributes/db/db__name.json @@ -13,10 +13,6 @@ }, "alias": ["db.namespace"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/db/db__namespace.json b/model/attributes/db/db__namespace.json index a0e1eca4..af1adaae 100644 --- a/model/attributes/db/db__namespace.json +++ b/model/attributes/db/db__namespace.json @@ -9,10 +9,6 @@ "example": "customers", "alias": ["db.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__operation.json b/model/attributes/db/db__operation.json index 1e35ea9a..29ec22b9 100644 --- a/model/attributes/db/db__operation.json +++ b/model/attributes/db/db__operation.json @@ -13,10 +13,6 @@ }, "alias": ["db.operation.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [199] diff --git a/model/attributes/db/db__operation__name.json b/model/attributes/db/db__operation__name.json index d0ec7ffe..a334b3db 100644 --- a/model/attributes/db/db__operation__name.json +++ b/model/attributes/db/db__operation__name.json @@ -9,10 +9,6 @@ "example": "SELECT", "alias": ["db.operation"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__query__parameter__[key].json b/model/attributes/db/db__query__parameter__[key].json index e88a04ca..186c05c1 100644 --- a/model/attributes/db/db__query__parameter__[key].json +++ b/model/attributes/db/db__query__parameter__[key].json @@ -9,10 +9,6 @@ "is_in_otel": true, "example": "db.query.parameter.foo='123'", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103, 127] diff --git a/model/attributes/db/db__query__summary.json b/model/attributes/db/db__query__summary.json index 48921043..e66a761d 100644 --- a/model/attributes/db/db__query__summary.json +++ b/model/attributes/db/db__query__summary.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "SELECT users;", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [208] diff --git a/model/attributes/db/db__query__text.json b/model/attributes/db/db__query__text.json index dec1823f..a7dd7b64 100644 --- a/model/attributes/db/db__query__text.json +++ b/model/attributes/db/db__query__text.json @@ -9,10 +9,6 @@ "example": "SELECT * FROM users WHERE id = $1", "alias": ["db.statement"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [208] diff --git a/model/attributes/db/db__redis__connection.json b/model/attributes/db/db__redis__connection.json index 0fd2bb7d..be0d455a 100644 --- a/model/attributes/db/db__redis__connection.json +++ b/model/attributes/db/db__redis__connection.json @@ -9,10 +9,6 @@ "example": "my-redis-instance", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__redis__parameters.json b/model/attributes/db/db__redis__parameters.json index 7284912f..2e524929 100644 --- a/model/attributes/db/db__redis__parameters.json +++ b/model/attributes/db/db__redis__parameters.json @@ -9,10 +9,6 @@ "example": ["test", "*"], "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/db/db__sql__bindings.json b/model/attributes/db/db__sql__bindings.json index 5cdca3ca..f956dc6f 100644 --- a/model/attributes/db/db__sql__bindings.json +++ b/model/attributes/db/db__sql__bindings.json @@ -14,10 +14,6 @@ "example": ["1", "foo"], "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/db/db__statement.json b/model/attributes/db/db__statement.json index 2ef2e6e2..80212f75 100644 --- a/model/attributes/db/db__statement.json +++ b/model/attributes/db/db__statement.json @@ -13,10 +13,6 @@ }, "alias": ["db.query.text"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [199] diff --git a/model/attributes/db/db__system.json b/model/attributes/db/db__system.json index 75ba33a5..178ca7b7 100644 --- a/model/attributes/db/db__system.json +++ b/model/attributes/db/db__system.json @@ -13,10 +13,6 @@ }, "alias": ["db.system.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [199, 224] diff --git a/model/attributes/db/db__system__name.json b/model/attributes/db/db__system__name.json index 4c482b98..a08f7d83 100644 --- a/model/attributes/db/db__system__name.json +++ b/model/attributes/db/db__system__name.json @@ -9,10 +9,6 @@ "example": "postgresql", "alias": ["db.system"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/db/db__user.json b/model/attributes/db/db__user.json index d2d71bb7..93076426 100644 --- a/model/attributes/db/db__user.json +++ b/model/attributes/db/db__user.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "fancy_user", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/device/device__brand.json b/model/attributes/device/device__brand.json index 9723b6a1..aeee4833 100644 --- a/model/attributes/device/device__brand.json +++ b/model/attributes/device/device__brand.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Apple", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [116, 127] diff --git a/model/attributes/device/device__family.json b/model/attributes/device/device__family.json index 9d8f90b9..5e9e2cc1 100644 --- a/model/attributes/device/device__family.json +++ b/model/attributes/device/device__family.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "iPhone", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [116, 127] diff --git a/model/attributes/device/device__model.json b/model/attributes/device/device__model.json index 9ef6623e..e8996a51 100644 --- a/model/attributes/device/device__model.json +++ b/model/attributes/device/device__model.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "iPhone 15 Pro Max", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [116, 127] diff --git a/model/attributes/environment.json b/model/attributes/environment.json index 95a84953..242d8097 100644 --- a/model/attributes/environment.json +++ b/model/attributes/environment.json @@ -13,10 +13,6 @@ }, "alias": ["sentry.environment"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/error/error__type.json b/model/attributes/error/error__type.json index 26dc913f..84b4ee6a 100644 --- a/model/attributes/error/error__type.json +++ b/model/attributes/error/error__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "timeout", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/event/event__id.json b/model/attributes/event/event__id.json index a83798a7..de0ab31a 100644 --- a/model/attributes/event/event__id.json +++ b/model/attributes/event/event__id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1234567890, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [101] diff --git a/model/attributes/event/event__name.json b/model/attributes/event/event__name.json index 7b59bfc4..aa97e704 100644 --- a/model/attributes/event/event__name.json +++ b/model/attributes/event/event__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Process Payload", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [101, 127] diff --git a/model/attributes/exception/exception__escaped.json b/model/attributes/exception/exception__escaped.json index 603cade8..4d81ad8e 100644 --- a/model/attributes/exception/exception__escaped.json +++ b/model/attributes/exception/exception__escaped.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/exception/exception__message.json b/model/attributes/exception/exception__message.json index ac7a6a94..16eddebb 100644 --- a/model/attributes/exception/exception__message.json +++ b/model/attributes/exception/exception__message.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "ENOENT: no such file or directory", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/exception/exception__stacktrace.json b/model/attributes/exception/exception__stacktrace.json index 7f5eaff4..f788ba30 100644 --- a/model/attributes/exception/exception__stacktrace.json +++ b/model/attributes/exception/exception__stacktrace.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "Exception in thread \"main\" java.lang.RuntimeException: Test exception\n at com.example.GenerateTrace.methodB(GenerateTrace.java:13)\n at com.example.GenerateTrace.methodA(GenerateTrace.java:9)\n at com.example.GenerateTrace.main(GenerateTrace.java:5)", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/exception/exception__type.json b/model/attributes/exception/exception__type.json index 82b6ea59..9db25476 100644 --- a/model/attributes/exception/exception__type.json +++ b/model/attributes/exception/exception__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "OSError", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/faas/faas__coldstart.json b/model/attributes/faas/faas__coldstart.json index 8093654c..7c99c2b2 100644 --- a/model/attributes/faas/faas__coldstart.json +++ b/model/attributes/faas/faas__coldstart.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/faas/faas__cron.json b/model/attributes/faas/faas__cron.json index fb024451..e4dbf36a 100644 --- a/model/attributes/faas/faas__cron.json +++ b/model/attributes/faas/faas__cron.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "0/5 * * * ? *", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/faas/faas__time.json b/model/attributes/faas/faas__time.json index 0133a2a5..c1bc32c3 100644 --- a/model/attributes/faas/faas__time.json +++ b/model/attributes/faas/faas__time.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "2020-01-23T13:47:06Z", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/faas/faas__trigger.json b/model/attributes/faas/faas__trigger.json index f0bdb489..b32aa2fa 100644 --- a/model/attributes/faas/faas__trigger.json +++ b/model/attributes/faas/faas__trigger.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "timer", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/flag/flag__evaluation__[key].json b/model/attributes/flag/flag__evaluation__[key].json index 5b3cdc4a..dc745de0 100644 --- a/model/attributes/flag/flag__evaluation__[key].json +++ b/model/attributes/flag/flag__evaluation__[key].json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "flag.evaluation.is_new_ui=true", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/frames/frames__delay.json b/model/attributes/frames/frames__delay.json index d499b04d..44388ffc 100644 --- a/model/attributes/frames/frames__delay.json +++ b/model/attributes/frames/frames__delay.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 5, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/frames/frames__frozen.json b/model/attributes/frames/frames__frozen.json index bbd37f28..41846a67 100644 --- a/model/attributes/frames/frames__frozen.json +++ b/model/attributes/frames/frames__frozen.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 3, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/frames/frames__slow.json b/model/attributes/frames/frames__slow.json index 05fa1124..46f517c5 100644 --- a/model/attributes/frames/frames__slow.json +++ b/model/attributes/frames/frames__slow.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/frames/frames__total.json b/model/attributes/frames/frames__total.json index 9a66ed5d..c7a761b4 100644 --- a/model/attributes/frames/frames__total.json +++ b/model/attributes/frames/frames__total.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 60, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/fs_error.json b/model/attributes/fs_error.json index 0b22e2b6..3453e22e 100644 --- a/model/attributes/fs_error.json +++ b/model/attributes/fs_error.json @@ -14,10 +14,6 @@ "example": "ENOENT: no such file or directory", "sdks": ["javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/gen_ai/gen_ai__agent__name.json b/model/attributes/gen_ai/gen_ai__agent__name.json index 3d76e426..99ff043f 100644 --- a/model/attributes/gen_ai/gen_ai__agent__name.json +++ b/model/attributes/gen_ai/gen_ai__agent__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "ResearchAssistant", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__conversation__id.json b/model/attributes/gen_ai/gen_ai__conversation__id.json index b057d2b0..c27cee5f 100644 --- a/model/attributes/gen_ai/gen_ai__conversation__id.json +++ b/model/attributes/gen_ai/gen_ai__conversation__id.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "conv_5j66UpCpwteGg4YSxUnt7lPY", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [250] diff --git a/model/attributes/gen_ai/gen_ai__cost__input_tokens.json b/model/attributes/gen_ai/gen_ai__cost__input_tokens.json index 857ddc30..58572dd8 100644 --- a/model/attributes/gen_ai/gen_ai__cost__input_tokens.json +++ b/model/attributes/gen_ai/gen_ai__cost__input_tokens.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 123.45, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__cost__output_tokens.json b/model/attributes/gen_ai/gen_ai__cost__output_tokens.json index 394677cb..2501df9e 100644 --- a/model/attributes/gen_ai/gen_ai__cost__output_tokens.json +++ b/model/attributes/gen_ai/gen_ai__cost__output_tokens.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 123.45, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__cost__total_tokens.json b/model/attributes/gen_ai/gen_ai__cost__total_tokens.json index 47c4a32e..09626b70 100644 --- a/model/attributes/gen_ai/gen_ai__cost__total_tokens.json +++ b/model/attributes/gen_ai/gen_ai__cost__total_tokens.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__embeddings__input.json b/model/attributes/gen_ai/gen_ai__embeddings__input.json index c1a09914..c43b4caa 100644 --- a/model/attributes/gen_ai/gen_ai__embeddings__input.json +++ b/model/attributes/gen_ai/gen_ai__embeddings__input.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "What's the weather in Paris?", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [195] diff --git a/model/attributes/gen_ai/gen_ai__input__messages.json b/model/attributes/gen_ai/gen_ai__input__messages.json index 6b130e9f..044369d8 100644 --- a/model/attributes/gen_ai/gen_ai__input__messages.json +++ b/model/attributes/gen_ai/gen_ai__input__messages.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__operation__name.json b/model/attributes/gen_ai/gen_ai__operation__name.json index 2900aecd..2d545fe0 100644 --- a/model/attributes/gen_ai/gen_ai__operation__name.json +++ b/model/attributes/gen_ai/gen_ai__operation__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "chat", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [225] diff --git a/model/attributes/gen_ai/gen_ai__operation__type.json b/model/attributes/gen_ai/gen_ai__operation__type.json index e7274d65..34914b4b 100644 --- a/model/attributes/gen_ai/gen_ai__operation__type.json +++ b/model/attributes/gen_ai/gen_ai__operation__type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "tool", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [257] diff --git a/model/attributes/gen_ai/gen_ai__output__messages.json b/model/attributes/gen_ai/gen_ai__output__messages.json index d86f8f07..d5e35b18 100644 --- a/model/attributes/gen_ai/gen_ai__output__messages.json +++ b/model/attributes/gen_ai/gen_ai__output__messages.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "[{\"role\": \"assistant\", \"parts\": [{\"type\": \"text\", \"content\": \"The weather in Paris is currently rainy with a temperature of 57°F.\"}], \"finish_reason\": \"stop\"}]", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__pipeline__name.json b/model/attributes/gen_ai/gen_ai__pipeline__name.json index 2001c6da..caf302b3 100644 --- a/model/attributes/gen_ai/gen_ai__pipeline__name.json +++ b/model/attributes/gen_ai/gen_ai__pipeline__name.json @@ -9,10 +9,6 @@ "example": "Autofix Pipeline", "alias": ["ai.pipeline.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [76, 127] diff --git a/model/attributes/gen_ai/gen_ai__prompt.json b/model/attributes/gen_ai/gen_ai__prompt.json index a7af76c4..bce93847 100644 --- a/model/attributes/gen_ai/gen_ai__prompt.json +++ b/model/attributes/gen_ai/gen_ai__prompt.json @@ -12,10 +12,6 @@ "reason": "Deprecated from OTEL, use gen_ai.input.messages with the new format instead." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [74, 108, 119] diff --git a/model/attributes/gen_ai/gen_ai__provider__name.json b/model/attributes/gen_ai/gen_ai__provider__name.json index 4aec9ff0..10f116b8 100644 --- a/model/attributes/gen_ai/gen_ai__provider__name.json +++ b/model/attributes/gen_ai/gen_ai__provider__name.json @@ -9,10 +9,6 @@ "example": "openai", "alias": ["ai.model.provider", "gen_ai.system"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [253] diff --git a/model/attributes/gen_ai/gen_ai__request__available_tools.json b/model/attributes/gen_ai/gen_ai__request__available_tools.json index 8c741a6c..d350f5ce 100644 --- a/model/attributes/gen_ai/gen_ai__request__available_tools.json +++ b/model/attributes/gen_ai/gen_ai__request__available_tools.json @@ -13,10 +13,6 @@ "replacement": "gen_ai.tool.definitions" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json b/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json index 885c5ec1..4b379846 100644 --- a/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json +++ b/model/attributes/gen_ai/gen_ai__request__frequency_penalty.json @@ -9,10 +9,6 @@ "example": 0.5, "alias": ["ai.frequency_penalty"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__max_tokens.json b/model/attributes/gen_ai/gen_ai__request__max_tokens.json index 60f49efa..3628bf33 100644 --- a/model/attributes/gen_ai/gen_ai__request__max_tokens.json +++ b/model/attributes/gen_ai/gen_ai__request__max_tokens.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 2048, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__messages.json b/model/attributes/gen_ai/gen_ai__request__messages.json index df1335f7..2c98c976 100644 --- a/model/attributes/gen_ai/gen_ai__request__messages.json +++ b/model/attributes/gen_ai/gen_ai__request__messages.json @@ -13,10 +13,6 @@ "replacement": "gen_ai.input.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__request__model.json b/model/attributes/gen_ai/gen_ai__request__model.json index 5d870eba..a25cb598 100644 --- a/model/attributes/gen_ai/gen_ai__request__model.json +++ b/model/attributes/gen_ai/gen_ai__request__model.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "gpt-4-turbo-preview", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__request__presence_penalty.json b/model/attributes/gen_ai/gen_ai__request__presence_penalty.json index 1bbf9a52..0160cc01 100644 --- a/model/attributes/gen_ai/gen_ai__request__presence_penalty.json +++ b/model/attributes/gen_ai/gen_ai__request__presence_penalty.json @@ -9,10 +9,6 @@ "example": 0.5, "alias": ["ai.presence_penalty"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__seed.json b/model/attributes/gen_ai/gen_ai__request__seed.json index 58894504..760a92ca 100644 --- a/model/attributes/gen_ai/gen_ai__request__seed.json +++ b/model/attributes/gen_ai/gen_ai__request__seed.json @@ -9,10 +9,6 @@ "example": "1234567890", "alias": ["ai.seed"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__request__temperature.json b/model/attributes/gen_ai/gen_ai__request__temperature.json index f35748f1..80e43f94 100644 --- a/model/attributes/gen_ai/gen_ai__request__temperature.json +++ b/model/attributes/gen_ai/gen_ai__request__temperature.json @@ -9,10 +9,6 @@ "example": 0.1, "alias": ["ai.temperature"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__top_k.json b/model/attributes/gen_ai/gen_ai__request__top_k.json index 9afb784c..e2e4a3ee 100644 --- a/model/attributes/gen_ai/gen_ai__request__top_k.json +++ b/model/attributes/gen_ai/gen_ai__request__top_k.json @@ -9,10 +9,6 @@ "example": 35, "alias": ["ai.top_k"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__request__top_p.json b/model/attributes/gen_ai/gen_ai__request__top_p.json index 91b60ca8..59a24681 100644 --- a/model/attributes/gen_ai/gen_ai__request__top_p.json +++ b/model/attributes/gen_ai/gen_ai__request__top_p.json @@ -9,10 +9,6 @@ "example": 0.7, "alias": ["ai.top_p"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__response__finish_reasons.json b/model/attributes/gen_ai/gen_ai__response__finish_reasons.json index ea314741..3e8d8a76 100644 --- a/model/attributes/gen_ai/gen_ai__response__finish_reasons.json +++ b/model/attributes/gen_ai/gen_ai__response__finish_reasons.json @@ -9,10 +9,6 @@ "example": "COMPLETE", "alias": ["ai.finish_reason"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__response__id.json b/model/attributes/gen_ai/gen_ai__response__id.json index 8cf3b1e1..2c203070 100644 --- a/model/attributes/gen_ai/gen_ai__response__id.json +++ b/model/attributes/gen_ai/gen_ai__response__id.json @@ -9,10 +9,6 @@ "example": "gen_123abc", "alias": ["ai.generation_id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__response__model.json b/model/attributes/gen_ai/gen_ai__response__model.json index 219949be..2f923786 100644 --- a/model/attributes/gen_ai/gen_ai__response__model.json +++ b/model/attributes/gen_ai/gen_ai__response__model.json @@ -9,10 +9,6 @@ "example": "gpt-4", "alias": ["ai.model_id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/gen_ai/gen_ai__response__streaming.json b/model/attributes/gen_ai/gen_ai__response__streaming.json index 8d8770e5..25b3aab1 100644 --- a/model/attributes/gen_ai/gen_ai__response__streaming.json +++ b/model/attributes/gen_ai/gen_ai__response__streaming.json @@ -9,10 +9,6 @@ "example": true, "alias": ["ai.streaming"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [76] diff --git a/model/attributes/gen_ai/gen_ai__response__text.json b/model/attributes/gen_ai/gen_ai__response__text.json index aa471b26..e90da480 100644 --- a/model/attributes/gen_ai/gen_ai__response__text.json +++ b/model/attributes/gen_ai/gen_ai__response__text.json @@ -13,10 +13,6 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json b/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json index ffa0b1bc..bb3e7354 100644 --- a/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json +++ b/model/attributes/gen_ai/gen_ai__response__time_to_first_token.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 0.6853435, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [227] diff --git a/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json b/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json index 843f0420..6ad42975 100644 --- a/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json +++ b/model/attributes/gen_ai/gen_ai__response__tokens_per_second.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 12345.67, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__response__tool_calls.json b/model/attributes/gen_ai/gen_ai__response__tool_calls.json index c4f0905b..a12e8ee1 100644 --- a/model/attributes/gen_ai/gen_ai__response__tool_calls.json +++ b/model/attributes/gen_ai/gen_ai__response__tool_calls.json @@ -13,10 +13,6 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__system.json b/model/attributes/gen_ai/gen_ai__system.json index bc6ecae6..3d077246 100644 --- a/model/attributes/gen_ai/gen_ai__system.json +++ b/model/attributes/gen_ai/gen_ai__system.json @@ -13,10 +13,6 @@ }, "alias": ["ai.model.provider", "gen_ai.provider.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [253] diff --git a/model/attributes/gen_ai/gen_ai__system__message.json b/model/attributes/gen_ai/gen_ai__system__message.json index f0e514bc..4a7b4566 100644 --- a/model/attributes/gen_ai/gen_ai__system__message.json +++ b/model/attributes/gen_ai/gen_ai__system__message.json @@ -12,10 +12,6 @@ "replacement": "gen_ai.system_instructions" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__system_instructions.json b/model/attributes/gen_ai/gen_ai__system_instructions.json index 093d29d3..016e3189 100644 --- a/model/attributes/gen_ai/gen_ai__system_instructions.json +++ b/model/attributes/gen_ai/gen_ai__system_instructions.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__call__arguments.json b/model/attributes/gen_ai/gen_ai__tool__call__arguments.json index 6e6332ca..00520274 100644 --- a/model/attributes/gen_ai/gen_ai__tool__call__arguments.json +++ b/model/attributes/gen_ai/gen_ai__tool__call__arguments.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__call__result.json b/model/attributes/gen_ai/gen_ai__tool__call__result.json index eef405c1..a24fe7d4 100644 --- a/model/attributes/gen_ai/gen_ai__tool__call__result.json +++ b/model/attributes/gen_ai/gen_ai__tool__call__result.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__definitions.json b/model/attributes/gen_ai/gen_ai__tool__definitions.json index 0498fae8..f8c53c30 100644 --- a/model/attributes/gen_ai/gen_ai__tool__definitions.json +++ b/model/attributes/gen_ai/gen_ai__tool__definitions.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "[{\"type\": \"function\", \"name\": \"get_current_weather\", \"description\": \"Get the current weather in a given location\", \"parameters\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\", \"description\": \"The city and state, e.g. San Francisco, CA\"}, \"unit\": {\"type\": \"string\", \"enum\": [\"celsius\", \"fahrenheit\"]}}, \"required\": [\"location\", \"unit\"]}}]", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] diff --git a/model/attributes/gen_ai/gen_ai__tool__description.json b/model/attributes/gen_ai/gen_ai__tool__description.json index e14bb025..d56cd574 100644 --- a/model/attributes/gen_ai/gen_ai__tool__description.json +++ b/model/attributes/gen_ai/gen_ai__tool__description.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "Searches the web for current information about a topic", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__tool__input.json b/model/attributes/gen_ai/gen_ai__tool__input.json index 9b8c9f4b..68962c1d 100644 --- a/model/attributes/gen_ai/gen_ai__tool__input.json +++ b/model/attributes/gen_ai/gen_ai__tool__input.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.1.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__message.json b/model/attributes/gen_ai/gen_ai__tool__message.json index 75bcbac2..c3ab8bee 100644 --- a/model/attributes/gen_ai/gen_ai__tool__message.json +++ b/model/attributes/gen_ai/gen_ai__tool__message.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.1.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__name.json b/model/attributes/gen_ai/gen_ai__tool__name.json index 5bf80013..a20f7ede 100644 --- a/model/attributes/gen_ai/gen_ai__tool__name.json +++ b/model/attributes/gen_ai/gen_ai__tool__name.json @@ -9,10 +9,6 @@ "example": "Flights", "alias": ["ai.function_call"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [57, 127] diff --git a/model/attributes/gen_ai/gen_ai__tool__output.json b/model/attributes/gen_ai/gen_ai__tool__output.json index 3fc6c1d5..419b3b53 100644 --- a/model/attributes/gen_ai/gen_ai__tool__output.json +++ b/model/attributes/gen_ai/gen_ai__tool__output.json @@ -15,7 +15,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.1.0", diff --git a/model/attributes/gen_ai/gen_ai__tool__type.json b/model/attributes/gen_ai/gen_ai__tool__type.json index 5306f053..2d10c916 100644 --- a/model/attributes/gen_ai/gen_ai__tool__type.json +++ b/model/attributes/gen_ai/gen_ai__tool__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "function", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [62, 127] diff --git a/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json b/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json index 17414aad..4175ca4b 100644 --- a/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__completion_tokens.json @@ -13,10 +13,6 @@ }, "alias": ["ai.completion_tokens.used", "gen_ai.usage.output_tokens"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__input_tokens.json b/model/attributes/gen_ai/gen_ai__usage__input_tokens.json index ebe90db9..9cc66217 100644 --- a/model/attributes/gen_ai/gen_ai__usage__input_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__input_tokens.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [261, 270] + "prs": [261] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json index 5f821df7..a603b9e8 100644 --- a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json +++ b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cache_write.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 100, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [217, 228] diff --git a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json index 4d7878fc..5d1b2458 100644 --- a/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json +++ b/model/attributes/gen_ai/gen_ai__usage__input_tokens__cached.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 50, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__output_tokens.json b/model/attributes/gen_ai/gen_ai__usage__output_tokens.json index 090dff97..1b4eb1d4 100644 --- a/model/attributes/gen_ai/gen_ai__usage__output_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__output_tokens.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [261, 270] + "prs": [261] }, { "version": "0.4.0", diff --git a/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json b/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json index 970c83fe..df8b6ea8 100644 --- a/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json +++ b/model/attributes/gen_ai/gen_ai__usage__output_tokens__reasoning.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 75, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json b/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json index 55f916e6..9cff253b 100644 --- a/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__prompt_tokens.json @@ -13,10 +13,6 @@ }, "alias": ["ai.prompt_tokens.used", "gen_ai.usage.input_tokens"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/gen_ai/gen_ai__usage__total_tokens.json b/model/attributes/gen_ai/gen_ai__usage__total_tokens.json index e3bafa5d..0180f6cf 100644 --- a/model/attributes/gen_ai/gen_ai__usage__total_tokens.json +++ b/model/attributes/gen_ai/gen_ai__usage__total_tokens.json @@ -9,10 +9,6 @@ "example": 20, "alias": ["ai.total_tokens.used"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/graphql/graphql__operation__name.json b/model/attributes/graphql/graphql__operation__name.json index e4f5fdfd..8da37ade 100644 --- a/model/attributes/graphql/graphql__operation__name.json +++ b/model/attributes/graphql/graphql__operation__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "findBookById", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/graphql/graphql__operation__type.json b/model/attributes/graphql/graphql__operation__type.json index 41814fa6..1a4c32a9 100644 --- a/model/attributes/graphql/graphql__operation__type.json +++ b/model/attributes/graphql/graphql__operation__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "query", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__client_ip.json b/model/attributes/http/http__client_ip.json index 8cdba4c2..b97e801a 100644 --- a/model/attributes/http/http__client_ip.json +++ b/model/attributes/http/http__client_ip.json @@ -13,10 +13,6 @@ }, "alias": ["client.address"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 106, 127] diff --git a/model/attributes/http/http__decoded_response_content_length.json b/model/attributes/http/http__decoded_response_content_length.json index bf58b571..3f3875dc 100644 --- a/model/attributes/http/http__decoded_response_content_length.json +++ b/model/attributes/http/http__decoded_response_content_length.json @@ -9,10 +9,6 @@ "example": 456, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__flavor.json b/model/attributes/http/http__flavor.json index fb1dd669..0009f5fd 100644 --- a/model/attributes/http/http__flavor.json +++ b/model/attributes/http/http__flavor.json @@ -13,10 +13,6 @@ }, "alias": ["network.protocol.version", "net.protocol.version"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/http/http__fragment.json b/model/attributes/http/http__fragment.json index d061bce4..f0a027bb 100644 --- a/model/attributes/http/http__fragment.json +++ b/model/attributes/http/http__fragment.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "#details", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/http/http__host.json b/model/attributes/http/http__host.json index a8a7786c..9c314ca9 100644 --- a/model/attributes/http/http__host.json +++ b/model/attributes/http/http__host.json @@ -14,10 +14,6 @@ }, "alias": ["server.address", "client.address", "http.server_name", "net.host.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/http/http__method.json b/model/attributes/http/http__method.json index 333cacc1..276be296 100644 --- a/model/attributes/http/http__method.json +++ b/model/attributes/http/http__method.json @@ -13,10 +13,6 @@ }, "alias": ["http.request.method"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/http/http__query.json b/model/attributes/http/http__query.json index e61658da..3af85d70 100644 --- a/model/attributes/http/http__query.json +++ b/model/attributes/http/http__query.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "?foo=bar&bar=baz", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/http/http__request__connect_start.json b/model/attributes/http/http__request__connect_start.json index 9a973d50..d5b8dba2 100644 --- a/model/attributes/http/http__request__connect_start.json +++ b/model/attributes/http/http__request__connect_start.json @@ -9,10 +9,6 @@ "example": 1732829555.111, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__connection_end.json b/model/attributes/http/http__request__connection_end.json index b14c1488..efddba45 100644 --- a/model/attributes/http/http__request__connection_end.json +++ b/model/attributes/http/http__request__connection_end.json @@ -9,10 +9,6 @@ "example": 1732829555.15, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__domain_lookup_end.json b/model/attributes/http/http__request__domain_lookup_end.json index 4ecee86d..a60cae11 100644 --- a/model/attributes/http/http__request__domain_lookup_end.json +++ b/model/attributes/http/http__request__domain_lookup_end.json @@ -9,10 +9,6 @@ "example": 1732829555.201, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__domain_lookup_start.json b/model/attributes/http/http__request__domain_lookup_start.json index d3d4ff12..f982c9a8 100644 --- a/model/attributes/http/http__request__domain_lookup_start.json +++ b/model/attributes/http/http__request__domain_lookup_start.json @@ -9,10 +9,6 @@ "example": 1732829555.322, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__fetch_start.json b/model/attributes/http/http__request__fetch_start.json index e4a3670e..1e9bab2a 100644 --- a/model/attributes/http/http__request__fetch_start.json +++ b/model/attributes/http/http__request__fetch_start.json @@ -9,10 +9,6 @@ "example": 1732829555.389, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__header__[key].json b/model/attributes/http/http__request__header__[key].json index a0065e5a..f4434756 100644 --- a/model/attributes/http/http__request__header__[key].json +++ b/model/attributes/http/http__request__header__[key].json @@ -9,10 +9,6 @@ "is_in_otel": true, "example": "http.request.header.custom-header=['foo', 'bar']", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [201, 204] diff --git a/model/attributes/http/http__request__method.json b/model/attributes/http/http__request__method.json index 3a36b989..7cf16552 100644 --- a/model/attributes/http/http__request__method.json +++ b/model/attributes/http/http__request__method.json @@ -9,10 +9,6 @@ "example": "GET", "alias": ["method", "http.method"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__request__redirect_end.json b/model/attributes/http/http__request__redirect_end.json index 3f7e51c4..a9731827 100644 --- a/model/attributes/http/http__request__redirect_end.json +++ b/model/attributes/http/http__request__redirect_end.json @@ -9,10 +9,6 @@ "example": 1732829558.502, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__redirect_start.json b/model/attributes/http/http__request__redirect_start.json index 79d26d3e..9bed8b42 100644 --- a/model/attributes/http/http__request__redirect_start.json +++ b/model/attributes/http/http__request__redirect_start.json @@ -9,10 +9,6 @@ "example": 1732829555.495, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__request_start.json b/model/attributes/http/http__request__request_start.json index b0d2525e..10fe4a54 100644 --- a/model/attributes/http/http__request__request_start.json +++ b/model/attributes/http/http__request__request_start.json @@ -9,10 +9,6 @@ "example": 1732829555.51, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__resend_count.json b/model/attributes/http/http__request__resend_count.json index 95c91729..08b05ee2 100644 --- a/model/attributes/http/http__request__resend_count.json +++ b/model/attributes/http/http__request__resend_count.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 2, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__response_end.json b/model/attributes/http/http__request__response_end.json index da82b158..4ef97610 100644 --- a/model/attributes/http/http__request__response_end.json +++ b/model/attributes/http/http__request__response_end.json @@ -9,10 +9,6 @@ "example": 1732829555.89, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__response_start.json b/model/attributes/http/http__request__response_start.json index c3bbcfc8..17451fb8 100644 --- a/model/attributes/http/http__request__response_start.json +++ b/model/attributes/http/http__request__response_start.json @@ -9,10 +9,6 @@ "example": 1732829555.7, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__secure_connection_start.json b/model/attributes/http/http__request__secure_connection_start.json index 7f13c133..1bd55b54 100644 --- a/model/attributes/http/http__request__secure_connection_start.json +++ b/model/attributes/http/http__request__secure_connection_start.json @@ -9,10 +9,6 @@ "example": 1732829555.73, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__time_to_first_byte.json b/model/attributes/http/http__request__time_to_first_byte.json index 9d5aa96e..4efdfb43 100644 --- a/model/attributes/http/http__request__time_to_first_byte.json +++ b/model/attributes/http/http__request__time_to_first_byte.json @@ -9,10 +9,6 @@ "example": 1.032, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__request__worker_start.json b/model/attributes/http/http__request__worker_start.json index 5ee84dad..44e71e35 100644 --- a/model/attributes/http/http__request__worker_start.json +++ b/model/attributes/http/http__request__worker_start.json @@ -9,10 +9,6 @@ "example": 1732829553.68, "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response__body__size.json b/model/attributes/http/http__response__body__size.json index 671e7f85..ca528b48 100644 --- a/model/attributes/http/http__response__body__size.json +++ b/model/attributes/http/http__response__body__size.json @@ -9,10 +9,6 @@ "example": 123, "alias": ["http.response_content_length", "http.response.header.content-length"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response__header__[key].json b/model/attributes/http/http__response__header__[key].json index 861ab83b..3c1f7b61 100644 --- a/model/attributes/http/http__response__header__[key].json +++ b/model/attributes/http/http__response__header__[key].json @@ -9,10 +9,6 @@ "is_in_otel": true, "example": "http.response.header.custom-header=['foo', 'bar']", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [201, 204] diff --git a/model/attributes/http/http__response__header__content-length.json b/model/attributes/http/http__response__header__content-length.json index aec136f6..8edc44df 100644 --- a/model/attributes/http/http__response__header__content-length.json +++ b/model/attributes/http/http__response__header__content-length.json @@ -9,10 +9,6 @@ "example": "http.response.header.custom-header=['foo', 'bar']", "alias": ["http.response_content_length", "http.response.body.size"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__response__size.json b/model/attributes/http/http__response__size.json index d2cfe892..84544ca3 100644 --- a/model/attributes/http/http__response__size.json +++ b/model/attributes/http/http__response__size.json @@ -9,10 +9,6 @@ "example": 456, "alias": ["http.response_transfer_size"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response__status_code.json b/model/attributes/http/http__response__status_code.json index bd52ddf1..a29795d7 100644 --- a/model/attributes/http/http__response__status_code.json +++ b/model/attributes/http/http__response__status_code.json @@ -9,10 +9,6 @@ "example": 404, "alias": ["http.status_code"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response_content_length.json b/model/attributes/http/http__response_content_length.json index f2b0c383..13330670 100644 --- a/model/attributes/http/http__response_content_length.json +++ b/model/attributes/http/http__response_content_length.json @@ -13,10 +13,6 @@ }, "alias": ["http.response.body.size", "http.response.header.content-length"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__response_transfer_size.json b/model/attributes/http/http__response_transfer_size.json index b4d87d70..ec0d946a 100644 --- a/model/attributes/http/http__response_transfer_size.json +++ b/model/attributes/http/http__response_transfer_size.json @@ -13,10 +13,6 @@ }, "alias": ["http.response.size"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__route.json b/model/attributes/http/http__route.json index d9a40013..a7ec1651 100644 --- a/model/attributes/http/http__route.json +++ b/model/attributes/http/http__route.json @@ -9,10 +9,6 @@ "example": "/users/:id", "alias": ["url.template"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/http/http__scheme.json b/model/attributes/http/http__scheme.json index bc8ab05d..d5cd0d6b 100644 --- a/model/attributes/http/http__scheme.json +++ b/model/attributes/http/http__scheme.json @@ -13,10 +13,6 @@ }, "alias": ["url.scheme"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/http/http__server__request__time_in_queue.json b/model/attributes/http/http__server__request__time_in_queue.json index f377c1a0..b2260d37 100644 --- a/model/attributes/http/http__server__request__time_in_queue.json +++ b/model/attributes/http/http__server__request__time_in_queue.json @@ -11,7 +11,7 @@ "changelog": [ { "version": "next", - "prs": [267, 270] + "prs": [267] } ] } diff --git a/model/attributes/http/http__server_name.json b/model/attributes/http/http__server_name.json index 50229d65..e14b4228 100644 --- a/model/attributes/http/http__server_name.json +++ b/model/attributes/http/http__server_name.json @@ -13,10 +13,6 @@ }, "alias": ["server.address", "net.host.name", "http.host"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/http/http__status_code.json b/model/attributes/http/http__status_code.json index fbc02edf..bb51562d 100644 --- a/model/attributes/http/http__status_code.json +++ b/model/attributes/http/http__status_code.json @@ -13,10 +13,6 @@ }, "alias": ["http.response.status_code"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/http/http__target.json b/model/attributes/http/http__target.json index 9b3a9002..e2994ce1 100644 --- a/model/attributes/http/http__target.json +++ b/model/attributes/http/http__target.json @@ -13,10 +13,6 @@ "reason": "This attribute is being deprecated in favor of url.path and url.query" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/http/http__url.json b/model/attributes/http/http__url.json index f7c0e867..07ebb898 100644 --- a/model/attributes/http/http__url.json +++ b/model/attributes/http/http__url.json @@ -13,10 +13,6 @@ }, "alias": ["url.full", "url"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108] diff --git a/model/attributes/http/http__user_agent.json b/model/attributes/http/http__user_agent.json index 29c1ba09..e5ff1afa 100644 --- a/model/attributes/http/http__user_agent.json +++ b/model/attributes/http/http__user_agent.json @@ -13,10 +13,6 @@ }, "alias": ["user_agent.original"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/id.json b/model/attributes/id.json index d6f6c9cb..faf204f4 100644 --- a/model/attributes/id.json +++ b/model/attributes/id.json @@ -9,10 +9,6 @@ "example": "f47ac10b58cc4372a5670e02b2c3d479", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/jvm/jvm__gc__action.json b/model/attributes/jvm/jvm__gc__action.json index 7e70b193..48622975 100644 --- a/model/attributes/jvm/jvm__gc__action.json +++ b/model/attributes/jvm/jvm__gc__action.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "end of minor GC", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__gc__name.json b/model/attributes/jvm/jvm__gc__name.json index a8d4a047..bc00a607 100644 --- a/model/attributes/jvm/jvm__gc__name.json +++ b/model/attributes/jvm/jvm__gc__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "G1 Young Generation", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__memory__pool__name.json b/model/attributes/jvm/jvm__memory__pool__name.json index 80d528f4..86dce78d 100644 --- a/model/attributes/jvm/jvm__memory__pool__name.json +++ b/model/attributes/jvm/jvm__memory__pool__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "G1 Old Gen", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__memory__type.json b/model/attributes/jvm/jvm__memory__type.json index 2ec99b3a..6fe577f6 100644 --- a/model/attributes/jvm/jvm__memory__type.json +++ b/model/attributes/jvm/jvm__memory__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "G1 Old Gen", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/jvm/jvm__thread__daemon.json b/model/attributes/jvm/jvm__thread__daemon.json index e98981c8..52458b11 100644 --- a/model/attributes/jvm/jvm__thread__daemon.json +++ b/model/attributes/jvm/jvm__thread__daemon.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/jvm/jvm__thread__state.json b/model/attributes/jvm/jvm__thread__state.json index 07a9b518..164b98f2 100644 --- a/model/attributes/jvm/jvm__thread__state.json +++ b/model/attributes/jvm/jvm__thread__state.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "blocked", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/lcp/lcp__element.json b/model/attributes/lcp/lcp__element.json index f9ad1251..31df8f97 100644 --- a/model/attributes/lcp/lcp__element.json +++ b/model/attributes/lcp/lcp__element.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "img", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/lcp/lcp__id.json b/model/attributes/lcp/lcp__id.json index 672eff0e..8bff47af 100644 --- a/model/attributes/lcp/lcp__id.json +++ b/model/attributes/lcp/lcp__id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "#hero", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/lcp/lcp__size.json b/model/attributes/lcp/lcp__size.json index e2d5e70d..79395161 100644 --- a/model/attributes/lcp/lcp__size.json +++ b/model/attributes/lcp/lcp__size.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1234, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/lcp/lcp__url.json b/model/attributes/lcp/lcp__url.json index bd0e934f..ca6377e9 100644 --- a/model/attributes/lcp/lcp__url.json +++ b/model/attributes/lcp/lcp__url.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "https://example.com", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/logger/logger__name.json b/model/attributes/logger/logger__name.json index d9c7a1a7..e01d0c63 100644 --- a/model/attributes/logger/logger__name.json +++ b/model/attributes/logger/logger__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "myLogger", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/mcp/mcp__cancelled__reason.json b/model/attributes/mcp/mcp__cancelled__reason.json index 24a4cc0f..e3571c4f 100644 --- a/model/attributes/mcp/mcp__cancelled__reason.json +++ b/model/attributes/mcp/mcp__cancelled__reason.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "User cancelled the request", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__cancelled__request_id.json b/model/attributes/mcp/mcp__cancelled__request_id.json index 519508f0..a4e4a58a 100644 --- a/model/attributes/mcp/mcp__cancelled__request_id.json +++ b/model/attributes/mcp/mcp__cancelled__request_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "123", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__client__name.json b/model/attributes/mcp/mcp__client__name.json index fedc8f2b..364bcc12 100644 --- a/model/attributes/mcp/mcp__client__name.json +++ b/model/attributes/mcp/mcp__client__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "claude-desktop", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__client__title.json b/model/attributes/mcp/mcp__client__title.json index 11bb8107..11e182e2 100644 --- a/model/attributes/mcp/mcp__client__title.json +++ b/model/attributes/mcp/mcp__client__title.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "Claude Desktop", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__client__version.json b/model/attributes/mcp/mcp__client__version.json index f0218307..ff1d3835 100644 --- a/model/attributes/mcp/mcp__client__version.json +++ b/model/attributes/mcp/mcp__client__version.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "1.0.0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__lifecycle__phase.json b/model/attributes/mcp/mcp__lifecycle__phase.json index a8192c7f..616b8af6 100644 --- a/model/attributes/mcp/mcp__lifecycle__phase.json +++ b/model/attributes/mcp/mcp__lifecycle__phase.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "initialization_complete", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__data_type.json b/model/attributes/mcp/mcp__logging__data_type.json index 48446ffc..65007e71 100644 --- a/model/attributes/mcp/mcp__logging__data_type.json +++ b/model/attributes/mcp/mcp__logging__data_type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "string", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__level.json b/model/attributes/mcp/mcp__logging__level.json index 1cddeac2..d17f8896 100644 --- a/model/attributes/mcp/mcp__logging__level.json +++ b/model/attributes/mcp/mcp__logging__level.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "info", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__logger.json b/model/attributes/mcp/mcp__logging__logger.json index a0583694..b24752fe 100644 --- a/model/attributes/mcp/mcp__logging__logger.json +++ b/model/attributes/mcp/mcp__logging__logger.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "mcp_server", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__logging__message.json b/model/attributes/mcp/mcp__logging__message.json index 84b56871..129d8d0e 100644 --- a/model/attributes/mcp/mcp__logging__message.json +++ b/model/attributes/mcp/mcp__logging__message.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "Tool execution completed successfully", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__method__name.json b/model/attributes/mcp/mcp__method__name.json index 759364d9..a46f3f20 100644 --- a/model/attributes/mcp/mcp__method__name.json +++ b/model/attributes/mcp/mcp__method__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "tools/call", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__progress__current.json b/model/attributes/mcp/mcp__progress__current.json index 6c9c934c..5b261c96 100644 --- a/model/attributes/mcp/mcp__progress__current.json +++ b/model/attributes/mcp/mcp__progress__current.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 50, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__progress__message.json b/model/attributes/mcp/mcp__progress__message.json index 371101ef..d34572ae 100644 --- a/model/attributes/mcp/mcp__progress__message.json +++ b/model/attributes/mcp/mcp__progress__message.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "Processing 50 of 100 items", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__progress__percentage.json b/model/attributes/mcp/mcp__progress__percentage.json index ae908244..2c38384b 100644 --- a/model/attributes/mcp/mcp__progress__percentage.json +++ b/model/attributes/mcp/mcp__progress__percentage.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 50, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__progress__token.json b/model/attributes/mcp/mcp__progress__token.json index a812f435..f127bee8 100644 --- a/model/attributes/mcp/mcp__progress__token.json +++ b/model/attributes/mcp/mcp__progress__token.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "progress-token-123", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__progress__total.json b/model/attributes/mcp/mcp__progress__total.json index bb1daf4e..9618f189 100644 --- a/model/attributes/mcp/mcp__progress__total.json +++ b/model/attributes/mcp/mcp__progress__total.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 100, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__prompt__name.json b/model/attributes/mcp/mcp__prompt__name.json index ad7639cb..e2da5413 100644 --- a/model/attributes/mcp/mcp__prompt__name.json +++ b/model/attributes/mcp/mcp__prompt__name.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "summarize", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__prompt__result__description.json b/model/attributes/mcp/mcp__prompt__result__description.json index 052870f7..3f35181d 100644 --- a/model/attributes/mcp/mcp__prompt__result__description.json +++ b/model/attributes/mcp/mcp__prompt__result__description.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "A summary of the requested information", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__prompt__result__message_content.json b/model/attributes/mcp/mcp__prompt__result__message_content.json index 700d2579..b29af5fe 100644 --- a/model/attributes/mcp/mcp__prompt__result__message_content.json +++ b/model/attributes/mcp/mcp__prompt__result__message_content.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Please provide a summary of the document", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__prompt__result__message_count.json b/model/attributes/mcp/mcp__prompt__result__message_count.json index bb5065d3..36efd8ab 100644 --- a/model/attributes/mcp/mcp__prompt__result__message_count.json +++ b/model/attributes/mcp/mcp__prompt__result__message_count.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 3, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__prompt__result__message_role.json b/model/attributes/mcp/mcp__prompt__result__message_role.json index de477556..33dd66eb 100644 --- a/model/attributes/mcp/mcp__prompt__result__message_role.json +++ b/model/attributes/mcp/mcp__prompt__result__message_role.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "user", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__protocol__ready.json b/model/attributes/mcp/mcp__protocol__ready.json index d531b1f8..1f396756 100644 --- a/model/attributes/mcp/mcp__protocol__ready.json +++ b/model/attributes/mcp/mcp__protocol__ready.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__protocol__version.json b/model/attributes/mcp/mcp__protocol__version.json index b505412b..56f156b5 100644 --- a/model/attributes/mcp/mcp__protocol__version.json +++ b/model/attributes/mcp/mcp__protocol__version.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "2024-11-05", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__request__argument__[key].json b/model/attributes/mcp/mcp__request__argument__[key].json index 99fcbed8..3fdc13f8 100644 --- a/model/attributes/mcp/mcp__request__argument__[key].json +++ b/model/attributes/mcp/mcp__request__argument__[key].json @@ -10,10 +10,6 @@ "has_dynamic_suffix": true, "example": "mcp.request.argument.query='weather in Paris'", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [176] diff --git a/model/attributes/mcp/mcp__request__argument__name.json b/model/attributes/mcp/mcp__request__argument__name.json index 8ee41a1d..130695ac 100644 --- a/model/attributes/mcp/mcp__request__argument__name.json +++ b/model/attributes/mcp/mcp__request__argument__name.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "summarize", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__request__argument__uri.json b/model/attributes/mcp/mcp__request__argument__uri.json index fe575ddd..d548a8a8 100644 --- a/model/attributes/mcp/mcp__request__argument__uri.json +++ b/model/attributes/mcp/mcp__request__argument__uri.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "file:///path/to/resource", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__request__id.json b/model/attributes/mcp/mcp__request__id.json index 9ddf74f0..c0e90c46 100644 --- a/model/attributes/mcp/mcp__request__id.json +++ b/model/attributes/mcp/mcp__request__id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "1", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__resource__protocol.json b/model/attributes/mcp/mcp__resource__protocol.json index 5d22f4c6..5e9af0cb 100644 --- a/model/attributes/mcp/mcp__resource__protocol.json +++ b/model/attributes/mcp/mcp__resource__protocol.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "file", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__resource__uri.json b/model/attributes/mcp/mcp__resource__uri.json index 0901868e..2e56b404 100644 --- a/model/attributes/mcp/mcp__resource__uri.json +++ b/model/attributes/mcp/mcp__resource__uri.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "file:///path/to/file.txt", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__server__name.json b/model/attributes/mcp/mcp__server__name.json index 57920a29..5924cf07 100644 --- a/model/attributes/mcp/mcp__server__name.json +++ b/model/attributes/mcp/mcp__server__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "sentry-mcp-server", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__server__title.json b/model/attributes/mcp/mcp__server__title.json index 2acf8c67..084370ae 100644 --- a/model/attributes/mcp/mcp__server__title.json +++ b/model/attributes/mcp/mcp__server__title.json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "Sentry MCP Server", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__server__version.json b/model/attributes/mcp/mcp__server__version.json index a09cc4b1..7a9bac93 100644 --- a/model/attributes/mcp/mcp__server__version.json +++ b/model/attributes/mcp/mcp__server__version.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "0.1.0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__session__id.json b/model/attributes/mcp/mcp__session__id.json index 98e172ee..6bd3afe7 100644 --- a/model/attributes/mcp/mcp__session__id.json +++ b/model/attributes/mcp/mcp__session__id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "550e8400-e29b-41d4-a716-446655440000", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__tool__name.json b/model/attributes/mcp/mcp__tool__name.json index f47cffef..5c38b4d0 100644 --- a/model/attributes/mcp/mcp__tool__name.json +++ b/model/attributes/mcp/mcp__tool__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "calculator", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__tool__result__content.json b/model/attributes/mcp/mcp__tool__result__content.json index 61822e1d..dcc5d97f 100644 --- a/model/attributes/mcp/mcp__tool__result__content.json +++ b/model/attributes/mcp/mcp__tool__result__content.json @@ -10,10 +10,6 @@ "example": "{\"output\": \"rainy\", \"toolCallId\": \"1\"}", "alias": [], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__tool__result__content_count.json b/model/attributes/mcp/mcp__tool__result__content_count.json index 721b3944..6b4f29f4 100644 --- a/model/attributes/mcp/mcp__tool__result__content_count.json +++ b/model/attributes/mcp/mcp__tool__result__content_count.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/mcp/mcp__tool__result__is_error.json b/model/attributes/mcp/mcp__tool__result__is_error.json index 438bf786..d85ee21f 100644 --- a/model/attributes/mcp/mcp__tool__result__is_error.json +++ b/model/attributes/mcp/mcp__tool__result__is_error.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": false, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mcp/mcp__transport.json b/model/attributes/mcp/mcp__transport.json index 8c27f7a8..5f9b0ab3 100644 --- a/model/attributes/mcp/mcp__transport.json +++ b/model/attributes/mcp/mcp__transport.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "stdio", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [171] diff --git a/model/attributes/mdc/mdc__[key].json b/model/attributes/mdc/mdc__[key].json index 9d9a3d28..759a394d 100644 --- a/model/attributes/mdc/mdc__[key].json +++ b/model/attributes/mdc/mdc__[key].json @@ -10,10 +10,6 @@ "example": "mdc.some_key='some_value'", "sdks": ["java", "java.logback", "java.jul", "java.log4j2"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [176] diff --git a/model/attributes/messaging/messaging__destination__connection.json b/model/attributes/messaging/messaging__destination__connection.json index 2acd4b3e..7e86e324 100644 --- a/model/attributes/messaging/messaging__destination__connection.json +++ b/model/attributes/messaging/messaging__destination__connection.json @@ -9,10 +9,6 @@ "example": "BestTopic", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/messaging/messaging__destination__name.json b/model/attributes/messaging/messaging__destination__name.json index 141d4207..0b4c5718 100644 --- a/model/attributes/messaging/messaging__destination__name.json +++ b/model/attributes/messaging/messaging__destination__name.json @@ -9,10 +9,6 @@ "example": "BestTopic", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/messaging/messaging__message__body__size.json b/model/attributes/messaging/messaging__message__body__size.json index cb51a0a1..201f92f7 100644 --- a/model/attributes/messaging/messaging__message__body__size.json +++ b/model/attributes/messaging/messaging__message__body__size.json @@ -9,10 +9,6 @@ "example": 839, "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__message__envelope__size.json b/model/attributes/messaging/messaging__message__envelope__size.json index a282a902..c4072fa0 100644 --- a/model/attributes/messaging/messaging__message__envelope__size.json +++ b/model/attributes/messaging/messaging__message__envelope__size.json @@ -9,10 +9,6 @@ "example": 1045, "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__message__id.json b/model/attributes/messaging/messaging__message__id.json index b4ae3222..4f79d762 100644 --- a/model/attributes/messaging/messaging__message__id.json +++ b/model/attributes/messaging/messaging__message__id.json @@ -9,10 +9,6 @@ "example": "f47ac10b58cc4372a5670e02b2c3d479", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/messaging/messaging__message__receive__latency.json b/model/attributes/messaging/messaging__message__receive__latency.json index 427d719d..23ae839c 100644 --- a/model/attributes/messaging/messaging__message__receive__latency.json +++ b/model/attributes/messaging/messaging__message__receive__latency.json @@ -9,10 +9,6 @@ "example": 1732847252, "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__message__retry__count.json b/model/attributes/messaging/messaging__message__retry__count.json index d5300647..675757c3 100644 --- a/model/attributes/messaging/messaging__message__retry__count.json +++ b/model/attributes/messaging/messaging__message__retry__count.json @@ -9,10 +9,6 @@ "example": 2, "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/messaging/messaging__operation__type.json b/model/attributes/messaging/messaging__operation__type.json index e8865238..13b29d34 100644 --- a/model/attributes/messaging/messaging__operation__type.json +++ b/model/attributes/messaging/messaging__operation__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "create", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [51, 127] diff --git a/model/attributes/messaging/messaging__system.json b/model/attributes/messaging/messaging__system.json index fc67615c..0781abdf 100644 --- a/model/attributes/messaging/messaging__system.json +++ b/model/attributes/messaging/messaging__system.json @@ -9,10 +9,6 @@ "example": "activemq", "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/method.json b/model/attributes/method.json index 67a56291..8f0efc3c 100644 --- a/model/attributes/method.json +++ b/model/attributes/method.json @@ -14,10 +14,6 @@ "alias": ["http.request.method"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/navigation/navigation__type.json b/model/attributes/navigation/navigation__type.json index ea915a26..329bd4e0 100644 --- a/model/attributes/navigation/navigation__type.json +++ b/model/attributes/navigation/navigation__type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "router.push", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/nel/nel__elapsed_time.json b/model/attributes/nel/nel__elapsed_time.json index 63d6b977..f37a863b 100644 --- a/model/attributes/nel/nel__elapsed_time.json +++ b/model/attributes/nel/nel__elapsed_time.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 100, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/nel/nel__phase.json b/model/attributes/nel/nel__phase.json index 52789d17..2b16ad42 100644 --- a/model/attributes/nel/nel__phase.json +++ b/model/attributes/nel/nel__phase.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "application", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/nel/nel__referrer.json b/model/attributes/nel/nel__referrer.json index 5bc0a634..03d1fc90 100644 --- a/model/attributes/nel/nel__referrer.json +++ b/model/attributes/nel/nel__referrer.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "https://example.com/foo?bar=baz", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/nel/nel__sampling_function.json b/model/attributes/nel/nel__sampling_function.json index 9d3f80a2..997ee1df 100644 --- a/model/attributes/nel/nel__sampling_function.json +++ b/model/attributes/nel/nel__sampling_function.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 0.5, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/nel/nel__type.json b/model/attributes/nel/nel__type.json index 1d4dc7a8..291b1ee1 100644 --- a/model/attributes/nel/nel__type.json +++ b/model/attributes/nel/nel__type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "dns.unreachable", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [68, 127] diff --git a/model/attributes/net/net__host__ip.json b/model/attributes/net/net__host__ip.json index 327cd532..c22fbd61 100644 --- a/model/attributes/net/net__host__ip.json +++ b/model/attributes/net/net__host__ip.json @@ -13,10 +13,6 @@ }, "alias": ["network.local.address", "net.sock.host.addr"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__host__name.json b/model/attributes/net/net__host__name.json index 0aa5f304..500b6b2e 100644 --- a/model/attributes/net/net__host__name.json +++ b/model/attributes/net/net__host__name.json @@ -13,10 +13,6 @@ }, "alias": ["server.address", "http.server_name", "http.host"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__host__port.json b/model/attributes/net/net__host__port.json index 5ae0e5c9..228da88e 100644 --- a/model/attributes/net/net__host__port.json +++ b/model/attributes/net/net__host__port.json @@ -13,10 +13,6 @@ }, "alias": ["server.port"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__peer__ip.json b/model/attributes/net/net__peer__ip.json index fe71c1a0..8e793235 100644 --- a/model/attributes/net/net__peer__ip.json +++ b/model/attributes/net/net__peer__ip.json @@ -13,10 +13,6 @@ }, "alias": ["network.peer.address", "net.sock.peer.addr"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__peer__name.json b/model/attributes/net/net__peer__name.json index 80bffd06..c8fa6be0 100644 --- a/model/attributes/net/net__peer__name.json +++ b/model/attributes/net/net__peer__name.json @@ -13,10 +13,6 @@ "reason": "Deprecated, use server.address on client spans and client.address on server spans." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/net/net__peer__port.json b/model/attributes/net/net__peer__port.json index 6b162dd0..5850d45c 100644 --- a/model/attributes/net/net__peer__port.json +++ b/model/attributes/net/net__peer__port.json @@ -13,10 +13,6 @@ "reason": "Deprecated, use server.port on client spans and client.port on server spans." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__protocol__name.json b/model/attributes/net/net__protocol__name.json index d88ad517..652fd6c7 100644 --- a/model/attributes/net/net__protocol__name.json +++ b/model/attributes/net/net__protocol__name.json @@ -13,10 +13,6 @@ }, "alias": ["network.protocol.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/net/net__protocol__version.json b/model/attributes/net/net__protocol__version.json index 9c196038..685508d8 100644 --- a/model/attributes/net/net__protocol__version.json +++ b/model/attributes/net/net__protocol__version.json @@ -13,10 +13,6 @@ }, "alias": ["network.protocol.version", "http.flavor"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__sock__family.json b/model/attributes/net/net__sock__family.json index b8ac4445..5da376ee 100644 --- a/model/attributes/net/net__sock__family.json +++ b/model/attributes/net/net__sock__family.json @@ -13,10 +13,6 @@ "reason": "Deprecated, use network.transport and network.type." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/net/net__sock__host__addr.json b/model/attributes/net/net__sock__host__addr.json index cc2406aa..032549a8 100644 --- a/model/attributes/net/net__sock__host__addr.json +++ b/model/attributes/net/net__sock__host__addr.json @@ -13,10 +13,6 @@ }, "alias": ["network.local.address", "net.host.ip"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__sock__host__port.json b/model/attributes/net/net__sock__host__port.json index 69a790b2..73629fde 100644 --- a/model/attributes/net/net__sock__host__port.json +++ b/model/attributes/net/net__sock__host__port.json @@ -13,10 +13,6 @@ }, "alias": ["network.local.port"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__sock__peer__addr.json b/model/attributes/net/net__sock__peer__addr.json index 76c1c8be..e15d4eb9 100644 --- a/model/attributes/net/net__sock__peer__addr.json +++ b/model/attributes/net/net__sock__peer__addr.json @@ -13,10 +13,6 @@ }, "alias": ["network.peer.address", "net.peer.ip"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] diff --git a/model/attributes/net/net__sock__peer__name.json b/model/attributes/net/net__sock__peer__name.json index 23611700..9f4c66de 100644 --- a/model/attributes/net/net__sock__peer__name.json +++ b/model/attributes/net/net__sock__peer__name.json @@ -12,10 +12,6 @@ "reason": "Deprecated from OTEL, no replacement at this time" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 119, 127] diff --git a/model/attributes/net/net__sock__peer__port.json b/model/attributes/net/net__sock__peer__port.json index 31e527a2..6a2cf457 100644 --- a/model/attributes/net/net__sock__peer__port.json +++ b/model/attributes/net/net__sock__peer__port.json @@ -12,10 +12,6 @@ "replacement": "network.peer.port" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/net/net__transport.json b/model/attributes/net/net__transport.json index 521b0657..b7d9cb60 100644 --- a/model/attributes/net/net__transport.json +++ b/model/attributes/net/net__transport.json @@ -13,10 +13,6 @@ }, "alias": ["network.transport"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/network/network__local__address.json b/model/attributes/network/network__local__address.json index 1866fb3f..ea5a923d 100644 --- a/model/attributes/network/network__local__address.json +++ b/model/attributes/network/network__local__address.json @@ -9,10 +9,6 @@ "example": "10.1.2.80", "alias": ["net.host.ip", "net.sock.host.addr"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__local__port.json b/model/attributes/network/network__local__port.json index 12a99b44..bcd4197c 100644 --- a/model/attributes/network/network__local__port.json +++ b/model/attributes/network/network__local__port.json @@ -9,10 +9,6 @@ "example": 65400, "alias": ["net.sock.host.port"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/network/network__peer__address.json b/model/attributes/network/network__peer__address.json index 38d99d6d..82caaa5d 100644 --- a/model/attributes/network/network__peer__address.json +++ b/model/attributes/network/network__peer__address.json @@ -9,10 +9,6 @@ "example": "10.1.2.80", "alias": ["net.peer.ip", "net.sock.peer.addr"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [108, 127] diff --git a/model/attributes/network/network__peer__port.json b/model/attributes/network/network__peer__port.json index 6c474aee..91020d66 100644 --- a/model/attributes/network/network__peer__port.json +++ b/model/attributes/network/network__peer__port.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 65400, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/network/network__protocol__name.json b/model/attributes/network/network__protocol__name.json index 6e129670..9716141b 100644 --- a/model/attributes/network/network__protocol__name.json +++ b/model/attributes/network/network__protocol__name.json @@ -9,10 +9,6 @@ "example": "http", "alias": ["net.protocol.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__protocol__version.json b/model/attributes/network/network__protocol__version.json index 48d05a90..2fea1134 100644 --- a/model/attributes/network/network__protocol__version.json +++ b/model/attributes/network/network__protocol__version.json @@ -9,10 +9,6 @@ "example": "1.1", "alias": ["http.flavor", "net.protocol.version"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__transport.json b/model/attributes/network/network__transport.json index f8fe243d..28eff03c 100644 --- a/model/attributes/network/network__transport.json +++ b/model/attributes/network/network__transport.json @@ -9,10 +9,6 @@ "example": "tcp", "alias": ["net.transport"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/network/network__type.json b/model/attributes/network/network__type.json index 81f4e8a4..b9d572fe 100644 --- a/model/attributes/network/network__type.json +++ b/model/attributes/network/network__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "ipv4", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__build_id.json b/model/attributes/os/os__build_id.json index b4f387e5..6f62aeb0 100644 --- a/model/attributes/os/os__build_id.json +++ b/model/attributes/os/os__build_id.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "1234567890", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__description.json b/model/attributes/os/os__description.json index 12ba44ea..77897e2b 100644 --- a/model/attributes/os/os__description.json +++ b/model/attributes/os/os__description.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "Ubuntu 18.04.1 LTS", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__name.json b/model/attributes/os/os__name.json index c75f7cfb..b0cfb729 100644 --- a/model/attributes/os/os__name.json +++ b/model/attributes/os/os__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "Ubuntu", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__type.json b/model/attributes/os/os__type.json index 63a32f50..953b8183 100644 --- a/model/attributes/os/os__type.json +++ b/model/attributes/os/os__type.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "linux", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/os/os__version.json b/model/attributes/os/os__version.json index 0c094f45..3b213f19 100644 --- a/model/attributes/os/os__version.json +++ b/model/attributes/os/os__version.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "18.04.2", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__scope__name.json b/model/attributes/otel/otel__scope__name.json index 1706bd8e..8566174a 100644 --- a/model/attributes/otel/otel__scope__name.json +++ b/model/attributes/otel/otel__scope__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "io.opentelemetry.contrib.mongodb", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__scope__version.json b/model/attributes/otel/otel__scope__version.json index 8799949b..87882243 100644 --- a/model/attributes/otel/otel__scope__version.json +++ b/model/attributes/otel/otel__scope__version.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "2.4.5", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__status_code.json b/model/attributes/otel/otel__status_code.json index 6a253a73..6caa40a6 100644 --- a/model/attributes/otel/otel__status_code.json +++ b/model/attributes/otel/otel__status_code.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "OK", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/otel/otel__status_description.json b/model/attributes/otel/otel__status_description.json index b810ea47..885217ed 100644 --- a/model/attributes/otel/otel__status_description.json +++ b/model/attributes/otel/otel__status_description.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "resource not found", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/params/params__[key].json b/model/attributes/params/params__[key].json index 5711c867..6175f93e 100644 --- a/model/attributes/params/params__[key].json +++ b/model/attributes/params/params__[key].json @@ -10,10 +10,6 @@ "example": "params.id='123'", "alias": ["url.path.parameter."], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/previous_route.json b/model/attributes/previous_route.json index 0f803e26..d08844b8 100644 --- a/model/attributes/previous_route.json +++ b/model/attributes/previous_route.json @@ -9,10 +9,6 @@ "example": "HomeScreen", "sdks": ["javascript-reactnative"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [74] diff --git a/model/attributes/process/process__executable__name.json b/model/attributes/process/process__executable__name.json index da93cbf9..703a31b8 100644 --- a/model/attributes/process/process__executable__name.json +++ b/model/attributes/process/process__executable__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "getsentry", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/process/process__pid.json b/model/attributes/process/process__pid.json index 1009ca3c..2313b4b1 100644 --- a/model/attributes/process/process__pid.json +++ b/model/attributes/process/process__pid.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 12345, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/process/process__runtime__description.json b/model/attributes/process/process__runtime__description.json index d68e6c93..854ca0b6 100644 --- a/model/attributes/process/process__runtime__description.json +++ b/model/attributes/process/process__runtime__description.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "Eclipse OpenJ9 VM openj9-0.21.0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/process/process__runtime__name.json b/model/attributes/process/process__runtime__name.json index 34625744..6aa485bb 100644 --- a/model/attributes/process/process__runtime__name.json +++ b/model/attributes/process/process__runtime__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "node", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/process/process__runtime__version.json b/model/attributes/process/process__runtime__version.json index eda0a7ca..22415f29 100644 --- a/model/attributes/process/process__runtime__version.json +++ b/model/attributes/process/process__runtime__version.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "18.04.2", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/query/query__[key].json b/model/attributes/query/query__[key].json index 9aa35fbe..b16035f8 100644 --- a/model/attributes/query/query__[key].json +++ b/model/attributes/query/query__[key].json @@ -14,10 +14,6 @@ }, "example": "query.id='123'", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/release.json b/model/attributes/release.json index d7903985..1ba456e3 100644 --- a/model/attributes/release.json +++ b/model/attributes/release.json @@ -13,10 +13,6 @@ }, "alias": ["sentry.release"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/remix/remix__action_form_data__[key].json b/model/attributes/remix/remix__action_form_data__[key].json index 68a08d94..8d84ec28 100644 --- a/model/attributes/remix/remix__action_form_data__[key].json +++ b/model/attributes/remix/remix__action_form_data__[key].json @@ -10,10 +10,6 @@ "example": "http.response.header.text='test'", "sdks": ["javascript-remix"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/replay_id.json b/model/attributes/replay_id.json index 42113893..c8438e00 100644 --- a/model/attributes/replay_id.json +++ b/model/attributes/replay_id.json @@ -13,10 +13,6 @@ }, "alias": ["sentry.replay_id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/resource/resource__deployment__environment.json b/model/attributes/resource/resource__deployment__environment.json index e94e39ab..a142f9dc 100644 --- a/model/attributes/resource/resource__deployment__environment.json +++ b/model/attributes/resource/resource__deployment__environment.json @@ -14,7 +14,7 @@ "changelog": [ { "version": "next", - "prs": [266, 270] + "prs": [266] } ] } diff --git a/model/attributes/resource/resource__deployment__environment__name.json b/model/attributes/resource/resource__deployment__environment__name.json index d62d529c..eee79930 100644 --- a/model/attributes/resource/resource__deployment__environment__name.json +++ b/model/attributes/resource/resource__deployment__environment__name.json @@ -12,10 +12,6 @@ "replacement": "sentry.environment" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [196] diff --git a/model/attributes/resource/resource__render_blocking_status.json b/model/attributes/resource/resource__render_blocking_status.json index c728d009..884f8980 100644 --- a/model/attributes/resource/resource__render_blocking_status.json +++ b/model/attributes/resource/resource__render_blocking_status.json @@ -9,10 +9,6 @@ "example": "non-blocking", "sdks": ["javascript-browser"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/route.json b/model/attributes/route.json index ecba2a4d..7aff896b 100644 --- a/model/attributes/route.json +++ b/model/attributes/route.json @@ -14,10 +14,6 @@ "alias": ["http.route"], "sdks": ["php-laravel", "javascript-reactnative"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 74] diff --git a/model/attributes/rpc/rpc__grpc__status_code.json b/model/attributes/rpc/rpc__grpc__status_code.json index 51c21f67..088e53da 100644 --- a/model/attributes/rpc/rpc__grpc__status_code.json +++ b/model/attributes/rpc/rpc__grpc__status_code.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 2, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/rpc/rpc__service.json b/model/attributes/rpc/rpc__service.json index f9447b19..c8d98f98 100644 --- a/model/attributes/rpc/rpc__service.json +++ b/model/attributes/rpc/rpc__service.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "myService.BestService", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/sentry/sentry__action.json b/model/attributes/sentry/sentry__action.json index 4854b26a..751a365b 100644 --- a/model/attributes/sentry/sentry__action.json +++ b/model/attributes/sentry/sentry__action.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "SELECT", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__browser__name.json b/model/attributes/sentry/sentry__browser__name.json index 85b7b4f3..eac40abe 100644 --- a/model/attributes/sentry/sentry__browser__name.json +++ b/model/attributes/sentry/sentry__browser__name.json @@ -13,10 +13,6 @@ }, "alias": ["browser.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [139] diff --git a/model/attributes/sentry/sentry__browser__version.json b/model/attributes/sentry/sentry__browser__version.json index 93479582..14ea089a 100644 --- a/model/attributes/sentry/sentry__browser__version.json +++ b/model/attributes/sentry/sentry__browser__version.json @@ -13,10 +13,6 @@ }, "alias": ["browser.version"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [139] diff --git a/model/attributes/sentry/sentry__cancellation_reason.json b/model/attributes/sentry/sentry__cancellation_reason.json index 741ebf43..77d40616 100644 --- a/model/attributes/sentry/sentry__cancellation_reason.json +++ b/model/attributes/sentry/sentry__cancellation_reason.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "document.hidden", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__category.json b/model/attributes/sentry/sentry__category.json index ea070201..d388dcbf 100644 --- a/model/attributes/sentry/sentry__category.json +++ b/model/attributes/sentry/sentry__category.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "db", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [218] diff --git a/model/attributes/sentry/sentry__client_sample_rate.json b/model/attributes/sentry/sentry__client_sample_rate.json index e78c5bf9..7bb707c3 100644 --- a/model/attributes/sentry/sentry__client_sample_rate.json +++ b/model/attributes/sentry/sentry__client_sample_rate.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 0.5, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [102] diff --git a/model/attributes/sentry/sentry__description.json b/model/attributes/sentry/sentry__description.json index 5fd199a7..96d52233 100644 --- a/model/attributes/sentry/sentry__description.json +++ b/model/attributes/sentry/sentry__description.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "index view query", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [135] diff --git a/model/attributes/sentry/sentry__dist.json b/model/attributes/sentry/sentry__dist.json index 831f97a8..5fef2053 100644 --- a/model/attributes/sentry/sentry__dist.json +++ b/model/attributes/sentry/sentry__dist.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "1.0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__domain.json b/model/attributes/sentry/sentry__domain.json index f02d7970..54d49713 100644 --- a/model/attributes/sentry/sentry__domain.json +++ b/model/attributes/sentry/sentry__domain.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "example.com", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__dsc__environment.json b/model/attributes/sentry/sentry__dsc__environment.json index 1f0d6c3f..db7d13dd 100644 --- a/model/attributes/sentry/sentry__dsc__environment.json +++ b/model/attributes/sentry/sentry__dsc__environment.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "prod", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__public_key.json b/model/attributes/sentry/sentry__dsc__public_key.json index 9912864d..6960141e 100644 --- a/model/attributes/sentry/sentry__dsc__public_key.json +++ b/model/attributes/sentry/sentry__dsc__public_key.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "c51734c603c4430eb57cb0a5728a479d", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__release.json b/model/attributes/sentry/sentry__dsc__release.json index f9e04ff5..e82257d0 100644 --- a/model/attributes/sentry/sentry__dsc__release.json +++ b/model/attributes/sentry/sentry__dsc__release.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "frontend@e8211be71b214afab5b85de4b4c54be3714952bb", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__sample_rate.json b/model/attributes/sentry/sentry__dsc__sample_rate.json index 5cffa1b8..75094125 100644 --- a/model/attributes/sentry/sentry__dsc__sample_rate.json +++ b/model/attributes/sentry/sentry__dsc__sample_rate.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "1.0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__sampled.json b/model/attributes/sentry/sentry__dsc__sampled.json index 4df6a1d7..ee3a40a9 100644 --- a/model/attributes/sentry/sentry__dsc__sampled.json +++ b/model/attributes/sentry/sentry__dsc__sampled.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__trace_id.json b/model/attributes/sentry/sentry__dsc__trace_id.json index 3c69bf56..387c5592 100644 --- a/model/attributes/sentry/sentry__dsc__trace_id.json +++ b/model/attributes/sentry/sentry__dsc__trace_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "047372980460430cbc78d9779df33a46", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__dsc__transaction.json b/model/attributes/sentry/sentry__dsc__transaction.json index 7969be66..7f435fee 100644 --- a/model/attributes/sentry/sentry__dsc__transaction.json +++ b/model/attributes/sentry/sentry__dsc__transaction.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "/issues/errors-outages/", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__environment.json b/model/attributes/sentry/sentry__environment.json index bbf89e44..8064e265 100644 --- a/model/attributes/sentry/sentry__environment.json +++ b/model/attributes/sentry/sentry__environment.json @@ -9,10 +9,6 @@ "example": "production", "alias": ["environment"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__exclusive_time.json b/model/attributes/sentry/sentry__exclusive_time.json index ece05608..7b07edc8 100644 --- a/model/attributes/sentry/sentry__exclusive_time.json +++ b/model/attributes/sentry/sentry__exclusive_time.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1234, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/sentry/sentry__graphql__operation.json b/model/attributes/sentry/sentry__graphql__operation.json index 8b08d0ca..c3933274 100644 --- a/model/attributes/sentry/sentry__graphql__operation.json +++ b/model/attributes/sentry/sentry__graphql__operation.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "getUserById", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__group.json b/model/attributes/sentry/sentry__group.json index 2d546aa9..87a3e2fa 100644 --- a/model/attributes/sentry/sentry__group.json +++ b/model/attributes/sentry/sentry__group.json @@ -7,10 +7,6 @@ }, "is_in_otel": false, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__http__prefetch.json b/model/attributes/sentry/sentry__http__prefetch.json index 5b00829b..4c7d3033 100644 --- a/model/attributes/sentry/sentry__http__prefetch.json +++ b/model/attributes/sentry/sentry__http__prefetch.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__idle_span_finish_reason.json b/model/attributes/sentry/sentry__idle_span_finish_reason.json index bd6a1135..48ab96b4 100644 --- a/model/attributes/sentry/sentry__idle_span_finish_reason.json +++ b/model/attributes/sentry/sentry__idle_span_finish_reason.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "idleTimeout", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__is_remote.json b/model/attributes/sentry/sentry__is_remote.json index 68bf611f..2222cdc1 100644 --- a/model/attributes/sentry/sentry__is_remote.json +++ b/model/attributes/sentry/sentry__is_remote.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__kind.json b/model/attributes/sentry/sentry__kind.json index 862b16b4..8b90b6fe 100644 --- a/model/attributes/sentry/sentry__kind.json +++ b/model/attributes/sentry/sentry__kind.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "server", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__log__sequence.json b/model/attributes/sentry/sentry__log__sequence.json new file mode 100644 index 00000000..a49cb744 --- /dev/null +++ b/model/attributes/sentry/sentry__log__sequence.json @@ -0,0 +1,10 @@ +{ + "key": "sentry.log.sequence", + "brief": "A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", + "type": "integer", + "pii": { + "key": "false" + }, + "is_in_otel": false, + "example": 42 +} diff --git a/model/attributes/sentry/sentry__message__parameter__[key].json b/model/attributes/sentry/sentry__message__parameter__[key].json index ed668291..6576722f 100644 --- a/model/attributes/sentry/sentry__message__parameter__[key].json +++ b/model/attributes/sentry/sentry__message__parameter__[key].json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "sentry.message.parameter.0='123'", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [116] diff --git a/model/attributes/sentry/sentry__message__template.json b/model/attributes/sentry/sentry__message__template.json index e20d8369..e10ac39a 100644 --- a/model/attributes/sentry/sentry__message__template.json +++ b/model/attributes/sentry/sentry__message__template.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Hello, {name}!", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [116] diff --git a/model/attributes/sentry/sentry__module__[key].json b/model/attributes/sentry/sentry__module__[key].json index aec49e66..e6babf78 100644 --- a/model/attributes/sentry/sentry__module__[key].json +++ b/model/attributes/sentry/sentry__module__[key].json @@ -9,10 +9,6 @@ "is_in_otel": false, "example": "sentry.module.brianium/paratest='v7.7.0'", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/sentry/sentry__nextjs__ssr__function__route.json b/model/attributes/sentry/sentry__nextjs__ssr__function__route.json index 82d2c164..ab5687cc 100644 --- a/model/attributes/sentry/sentry__nextjs__ssr__function__route.json +++ b/model/attributes/sentry/sentry__nextjs__ssr__function__route.json @@ -9,10 +9,6 @@ "example": "/posts/[id]/layout", "sdks": ["javascript"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [54, 106] diff --git a/model/attributes/sentry/sentry__nextjs__ssr__function__type.json b/model/attributes/sentry/sentry__nextjs__ssr__function__type.json index 4ef66a46..9278bfd4 100644 --- a/model/attributes/sentry/sentry__nextjs__ssr__function__type.json +++ b/model/attributes/sentry/sentry__nextjs__ssr__function__type.json @@ -9,10 +9,6 @@ "example": "generateMetadata", "sdks": ["javascript"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [54, 106] diff --git a/model/attributes/sentry/sentry__normalized_db_query.json b/model/attributes/sentry/sentry__normalized_db_query.json index e44c2830..dcccf218 100644 --- a/model/attributes/sentry/sentry__normalized_db_query.json +++ b/model/attributes/sentry/sentry__normalized_db_query.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "SELECT .. FROM sentry_project WHERE (project_id = %s)", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [194] diff --git a/model/attributes/sentry/sentry__normalized_db_query__hash.json b/model/attributes/sentry/sentry__normalized_db_query__hash.json index fa8c8d7b..2a78e84b 100644 --- a/model/attributes/sentry/sentry__normalized_db_query__hash.json +++ b/model/attributes/sentry/sentry__normalized_db_query__hash.json @@ -7,10 +7,6 @@ }, "is_in_otel": false, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [200] diff --git a/model/attributes/sentry/sentry__normalized_description.json b/model/attributes/sentry/sentry__normalized_description.json index 258d3ae9..4bfd47a3 100644 --- a/model/attributes/sentry/sentry__normalized_description.json +++ b/model/attributes/sentry/sentry__normalized_description.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "SELECT .. FROM sentry_project WHERE (project_id = %s)", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [212] diff --git a/model/attributes/sentry/sentry__observed_timestamp_nanos.json b/model/attributes/sentry/sentry__observed_timestamp_nanos.json index 275e2750..7541a0f8 100644 --- a/model/attributes/sentry/sentry__observed_timestamp_nanos.json +++ b/model/attributes/sentry/sentry__observed_timestamp_nanos.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "1544712660300000000", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [174] diff --git a/model/attributes/sentry/sentry__op.json b/model/attributes/sentry/sentry__op.json index f8a6e3db..4d2629bb 100644 --- a/model/attributes/sentry/sentry__op.json +++ b/model/attributes/sentry/sentry__op.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "http.client", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__origin.json b/model/attributes/sentry/sentry__origin.json index 722ef0fd..baf0977f 100644 --- a/model/attributes/sentry/sentry__origin.json +++ b/model/attributes/sentry/sentry__origin.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "auto.http.otel.fastify", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [68] diff --git a/model/attributes/sentry/sentry__platform.json b/model/attributes/sentry/sentry__platform.json index b8f108e9..8065805d 100644 --- a/model/attributes/sentry/sentry__platform.json +++ b/model/attributes/sentry/sentry__platform.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "php", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__profiler_id.json b/model/attributes/sentry/sentry__profiler_id.json index bd868f95..e084dd46 100644 --- a/model/attributes/sentry/sentry__profiler_id.json +++ b/model/attributes/sentry/sentry__profiler_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "18779b64dd35d1a538e7ce2dd2d3fad3", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [242] diff --git a/model/attributes/sentry/sentry__release.json b/model/attributes/sentry/sentry__release.json index 06db55c0..a96df2af 100644 --- a/model/attributes/sentry/sentry__release.json +++ b/model/attributes/sentry/sentry__release.json @@ -9,10 +9,6 @@ "example": "7.0.0", "alias": ["service.version", "release"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__replay_id.json b/model/attributes/sentry/sentry__replay_id.json index 656fc556..924295e4 100644 --- a/model/attributes/sentry/sentry__replay_id.json +++ b/model/attributes/sentry/sentry__replay_id.json @@ -9,10 +9,6 @@ "example": "123e4567e89b12d3a456426614174000", "alias": ["replay_id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__replay_is_buffering.json b/model/attributes/sentry/sentry__replay_is_buffering.json index 7334bff4..b8681c6e 100644 --- a/model/attributes/sentry/sentry__replay_is_buffering.json +++ b/model/attributes/sentry/sentry__replay_is_buffering.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [185] diff --git a/model/attributes/sentry/sentry__sdk__integrations.json b/model/attributes/sentry/sentry__sdk__integrations.json index 7832a751..058532aa 100644 --- a/model/attributes/sentry/sentry__sdk__integrations.json +++ b/model/attributes/sentry/sentry__sdk__integrations.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": ["InboundFilters", "FunctionToString", "BrowserApiErrors", "Breadcrumbs"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0", "prs": [42] diff --git a/model/attributes/sentry/sentry__sdk__name.json b/model/attributes/sentry/sentry__sdk__name.json index 4a385f6a..b8b89ace 100644 --- a/model/attributes/sentry/sentry__sdk__name.json +++ b/model/attributes/sentry/sentry__sdk__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "@sentry/react", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__sdk__version.json b/model/attributes/sentry/sentry__sdk__version.json index 3c3b573b..d447ea00 100644 --- a/model/attributes/sentry/sentry__sdk__version.json +++ b/model/attributes/sentry/sentry__sdk__version.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "7.0.0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/sentry/sentry__segment__id.json b/model/attributes/sentry/sentry__segment__id.json index f1f14773..21f3868c 100644 --- a/model/attributes/sentry/sentry__segment__id.json +++ b/model/attributes/sentry/sentry__segment__id.json @@ -9,10 +9,6 @@ "example": "051581bf3cb55c13", "alias": ["sentry.segment_id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [107, 124] diff --git a/model/attributes/sentry/sentry__segment__name.json b/model/attributes/sentry/sentry__segment__name.json index 3fcf050d..258337eb 100644 --- a/model/attributes/sentry/sentry__segment__name.json +++ b/model/attributes/sentry/sentry__segment__name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "GET /user", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [104] diff --git a/model/attributes/sentry/sentry__segment_id.json b/model/attributes/sentry/sentry__segment_id.json index cb59fc18..b939b902 100644 --- a/model/attributes/sentry/sentry__segment_id.json +++ b/model/attributes/sentry/sentry__segment_id.json @@ -13,10 +13,6 @@ "replacement": "sentry.segment.id" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [124] diff --git a/model/attributes/sentry/sentry__server_sample_rate.json b/model/attributes/sentry/sentry__server_sample_rate.json index 24dc2335..f2be53f2 100644 --- a/model/attributes/sentry/sentry__server_sample_rate.json +++ b/model/attributes/sentry/sentry__server_sample_rate.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 0.5, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [102] diff --git a/model/attributes/sentry/sentry__span__source.json b/model/attributes/sentry/sentry__span__source.json index 88a6cca4..74a3633d 100644 --- a/model/attributes/sentry/sentry__span__source.json +++ b/model/attributes/sentry/sentry__span__source.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "route", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [214] diff --git a/model/attributes/sentry/sentry__status__message.json b/model/attributes/sentry/sentry__status__message.json index c487ac50..ed199558 100644 --- a/model/attributes/sentry/sentry__status__message.json +++ b/model/attributes/sentry/sentry__status__message.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "foobar", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [190] diff --git a/model/attributes/sentry/sentry__status_code.json b/model/attributes/sentry/sentry__status_code.json index fc3893a9..f25cfc71 100644 --- a/model/attributes/sentry/sentry__status_code.json +++ b/model/attributes/sentry/sentry__status_code.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 200, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [223, 228] diff --git a/model/attributes/sentry/sentry__timestamp__sequence.json b/model/attributes/sentry/sentry__timestamp__sequence.json deleted file mode 100644 index c86ec729..00000000 --- a/model/attributes/sentry/sentry__timestamp__sequence.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "sentry.timestamp.sequence", - "brief": "A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.", - "type": "integer", - "pii": { - "key": "false" - }, - "is_in_otel": false, - "example": 0 -} diff --git a/model/attributes/sentry/sentry__trace__parent_span_id.json b/model/attributes/sentry/sentry__trace__parent_span_id.json index d3271851..d81665fe 100644 --- a/model/attributes/sentry/sentry__trace__parent_span_id.json +++ b/model/attributes/sentry/sentry__trace__parent_span_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "b0e6f15b45c36b12", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [116] diff --git a/model/attributes/sentry/sentry__transaction.json b/model/attributes/sentry/sentry__transaction.json index 8e795a90..2e9a8fc2 100644 --- a/model/attributes/sentry/sentry__transaction.json +++ b/model/attributes/sentry/sentry__transaction.json @@ -9,10 +9,6 @@ "example": "GET /", "alias": ["transaction"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/server/server__address.json b/model/attributes/server/server__address.json index 9c99101c..82787b05 100644 --- a/model/attributes/server/server__address.json +++ b/model/attributes/server/server__address.json @@ -9,10 +9,6 @@ "example": "example.com", "alias": ["http.server_name", "net.host.name", "http.host"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [108, 127] diff --git a/model/attributes/server/server__port.json b/model/attributes/server/server__port.json index 3edea79f..573d0b4d 100644 --- a/model/attributes/server/server__port.json +++ b/model/attributes/server/server__port.json @@ -9,10 +9,6 @@ "example": 1337, "alias": ["net.host.port"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/service/service__name.json b/model/attributes/service/service__name.json index c6e45efa..f1fd3f7d 100644 --- a/model/attributes/service/service__name.json +++ b/model/attributes/service/service__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "omegastar", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/service/service__version.json b/model/attributes/service/service__version.json index f8a86b12..869f42f4 100644 --- a/model/attributes/service/service__version.json +++ b/model/attributes/service/service__version.json @@ -9,10 +9,6 @@ "example": "5.0.0", "alias": ["sentry.release"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/thread/thread__id.json b/model/attributes/thread/thread__id.json index 3e4ff341..d0c34ed6 100644 --- a/model/attributes/thread/thread__id.json +++ b/model/attributes/thread/thread__id.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 56, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/thread/thread__name.json b/model/attributes/thread/thread__name.json index 518eec71..3dad8f92 100644 --- a/model/attributes/thread/thread__name.json +++ b/model/attributes/thread/thread__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "main", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/timber/timber__tag.json b/model/attributes/timber/timber__tag.json index 8b29529d..1e7e1b69 100644 --- a/model/attributes/timber/timber__tag.json +++ b/model/attributes/timber/timber__tag.json @@ -9,10 +9,6 @@ "example": "MyTag", "sdks": ["sentry.java.android"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.0", "prs": [183] diff --git a/model/attributes/transaction.json b/model/attributes/transaction.json index c16ae2e1..c5a910db 100644 --- a/model/attributes/transaction.json +++ b/model/attributes/transaction.json @@ -13,10 +13,6 @@ }, "alias": ["sentry.transaction"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] diff --git a/model/attributes/type.json b/model/attributes/type.json index a0e1b9ce..61ad3e50 100644 --- a/model/attributes/type.json +++ b/model/attributes/type.json @@ -9,10 +9,6 @@ "example": "fetch", "sdks": ["javascript-browser", "javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/ui/ui__component_name.json b/model/attributes/ui/ui__component_name.json index 8d65f509..ead755c3 100644 --- a/model/attributes/ui/ui__component_name.json +++ b/model/attributes/ui/ui__component_name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "HomeButton", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/ui/ui__contributes_to_ttfd.json b/model/attributes/ui/ui__contributes_to_ttfd.json index 93b09ac5..b24fc4f8 100644 --- a/model/attributes/ui/ui__contributes_to_ttfd.json +++ b/model/attributes/ui/ui__contributes_to_ttfd.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/ui/ui__contributes_to_ttid.json b/model/attributes/ui/ui__contributes_to_ttid.json index 73315062..8187fccf 100644 --- a/model/attributes/ui/ui__contributes_to_ttid.json +++ b/model/attributes/ui/ui__contributes_to_ttid.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": true, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/url.json b/model/attributes/url.json index 516963b6..132ce9bd 100644 --- a/model/attributes/url.json +++ b/model/attributes/url.json @@ -14,10 +14,6 @@ "alias": ["url.full", "http.url"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] diff --git a/model/attributes/url/url__domain.json b/model/attributes/url/url__domain.json index d06b72e9..7be362d3 100644 --- a/model/attributes/url/url__domain.json +++ b/model/attributes/url/url__domain.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "example.com", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/url/url__fragment.json b/model/attributes/url/url__fragment.json index 46e59ed7..c839a88a 100644 --- a/model/attributes/url/url__fragment.json +++ b/model/attributes/url/url__fragment.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "details", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/url/url__full.json b/model/attributes/url/url__full.json index 920db180..f0e6cc1d 100644 --- a/model/attributes/url/url__full.json +++ b/model/attributes/url/url__full.json @@ -9,10 +9,6 @@ "example": "https://example.com/test?foo=bar#buzz", "alias": ["http.url", "url"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [108] diff --git a/model/attributes/url/url__path.json b/model/attributes/url/url__path.json index a73425fd..9b53f873 100644 --- a/model/attributes/url/url__path.json +++ b/model/attributes/url/url__path.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "/foo", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/url/url__path__parameter__[key].json b/model/attributes/url/url__path__parameter__[key].json index 6ed7d8ca..f2f9bfad 100644 --- a/model/attributes/url/url__path__parameter__[key].json +++ b/model/attributes/url/url__path__parameter__[key].json @@ -10,10 +10,6 @@ "example": "url.path.parameter.id='123'", "alias": ["params."], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] diff --git a/model/attributes/url/url__port.json b/model/attributes/url/url__port.json index 24cfe6cc..815807dd 100644 --- a/model/attributes/url/url__port.json +++ b/model/attributes/url/url__port.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": 1337, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/url/url__query.json b/model/attributes/url/url__query.json index 48044e5e..26220b36 100644 --- a/model/attributes/url/url__query.json +++ b/model/attributes/url/url__query.json @@ -9,10 +9,6 @@ "is_in_otel": true, "example": "foo=bar&bar=baz", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/url/url__scheme.json b/model/attributes/url/url__scheme.json index 0419917c..5ddb7777 100644 --- a/model/attributes/url/url__scheme.json +++ b/model/attributes/url/url__scheme.json @@ -9,10 +9,6 @@ "example": "https", "alias": ["http.scheme"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/url/url__template.json b/model/attributes/url/url__template.json index 83e6d918..5ffa0fce 100644 --- a/model/attributes/url/url__template.json +++ b/model/attributes/url/url__template.json @@ -9,10 +9,6 @@ "example": "/users/:id", "alias": ["http.route"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/user/user__email.json b/model/attributes/user/user__email.json index 16dc0da8..43c712ae 100644 --- a/model/attributes/user/user__email.json +++ b/model/attributes/user/user__email.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "test@example.com", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__full_name.json b/model/attributes/user/user__full_name.json index 1091e883..b10f3994 100644 --- a/model/attributes/user/user__full_name.json +++ b/model/attributes/user/user__full_name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "John Smith", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__city.json b/model/attributes/user/user__geo__city.json index 6637939b..2c366655 100644 --- a/model/attributes/user/user__geo__city.json +++ b/model/attributes/user/user__geo__city.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Toronto", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__country_code.json b/model/attributes/user/user__geo__country_code.json index 927a7aeb..f0f8be56 100644 --- a/model/attributes/user/user__geo__country_code.json +++ b/model/attributes/user/user__geo__country_code.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "CA", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__region.json b/model/attributes/user/user__geo__region.json index 01609c86..f75fbfa4 100644 --- a/model/attributes/user/user__geo__region.json +++ b/model/attributes/user/user__geo__region.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Canada", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__geo__subdivision.json b/model/attributes/user/user__geo__subdivision.json index 37baf7bd..3d24a10e 100644 --- a/model/attributes/user/user__geo__subdivision.json +++ b/model/attributes/user/user__geo__subdivision.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "Ontario", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__hash.json b/model/attributes/user/user__hash.json index 49cb8ad8..138ebb71 100644 --- a/model/attributes/user/user__hash.json +++ b/model/attributes/user/user__hash.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__id.json b/model/attributes/user/user__id.json index 7d052b10..05b1f8ce 100644 --- a/model/attributes/user/user__id.json +++ b/model/attributes/user/user__id.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "S-1-5-21-202424912787-2692429404-2351956786-1000", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__ip_address.json b/model/attributes/user/user__ip_address.json index d86839bb..a19b9177 100644 --- a/model/attributes/user/user__ip_address.json +++ b/model/attributes/user/user__ip_address.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "192.168.1.1", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [75] diff --git a/model/attributes/user/user__name.json b/model/attributes/user/user__name.json index fe1fe773..3d55a5a8 100644 --- a/model/attributes/user/user__name.json +++ b/model/attributes/user/user__name.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": "j.smith", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user/user__roles.json b/model/attributes/user/user__roles.json index 715722bf..9f6c6fdb 100644 --- a/model/attributes/user/user__roles.json +++ b/model/attributes/user/user__roles.json @@ -8,10 +8,6 @@ "is_in_otel": true, "example": ["admin", "editor"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.0.0" } diff --git a/model/attributes/user_agent/user_agent__original.json b/model/attributes/user_agent/user_agent__original.json index 3c42144d..63ab13f2 100644 --- a/model/attributes/user_agent/user_agent__original.json +++ b/model/attributes/user_agent/user_agent__original.json @@ -9,10 +9,6 @@ "example": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1", "alias": ["http.user_agent"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [127] diff --git a/model/attributes/vercel/vercel__branch.json b/model/attributes/vercel/vercel__branch.json index b9a5f443..6c1219e1 100644 --- a/model/attributes/vercel/vercel__branch.json +++ b/model/attributes/vercel/vercel__branch.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "main", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__build_id.json b/model/attributes/vercel/vercel__build_id.json index 3f78fa13..7b549743 100644 --- a/model/attributes/vercel/vercel__build_id.json +++ b/model/attributes/vercel/vercel__build_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "bld_cotnkcr76", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__deployment_id.json b/model/attributes/vercel/vercel__deployment_id.json index d700d6e3..156863db 100644 --- a/model/attributes/vercel/vercel__deployment_id.json +++ b/model/attributes/vercel/vercel__deployment_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "dpl_233NRGRjVZX1caZrXWtz5g1TAksD", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__destination.json b/model/attributes/vercel/vercel__destination.json index 84d3dc4e..6882b736 100644 --- a/model/attributes/vercel/vercel__destination.json +++ b/model/attributes/vercel/vercel__destination.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "https://vitals.vercel-insights.com/v1", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__edge_type.json b/model/attributes/vercel/vercel__edge_type.json index 0fea4fa5..5c10c900 100644 --- a/model/attributes/vercel/vercel__edge_type.json +++ b/model/attributes/vercel/vercel__edge_type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "edge-function", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__entrypoint.json b/model/attributes/vercel/vercel__entrypoint.json index d770defb..21376a39 100644 --- a/model/attributes/vercel/vercel__entrypoint.json +++ b/model/attributes/vercel/vercel__entrypoint.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "api/index.js", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__execution_region.json b/model/attributes/vercel/vercel__execution_region.json index 92beeadb..6a7d43a6 100644 --- a/model/attributes/vercel/vercel__execution_region.json +++ b/model/attributes/vercel/vercel__execution_region.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "sfo1", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__id.json b/model/attributes/vercel/vercel__id.json index ded96026..d67429a3 100644 --- a/model/attributes/vercel/vercel__id.json +++ b/model/attributes/vercel/vercel__id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "1573817187330377061717300000", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__ja3_digest.json b/model/attributes/vercel/vercel__ja3_digest.json index 20f37cd9..2435a1d1 100644 --- a/model/attributes/vercel/vercel__ja3_digest.json +++ b/model/attributes/vercel/vercel__ja3_digest.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__ja4_digest.json b/model/attributes/vercel/vercel__ja4_digest.json index 1b017b38..ee02e067 100644 --- a/model/attributes/vercel/vercel__ja4_digest.json +++ b/model/attributes/vercel/vercel__ja4_digest.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "t13d1516h2_8daaf6152771_02713d6af862", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__log_type.json b/model/attributes/vercel/vercel__log_type.json index cac03426..05a72d49 100644 --- a/model/attributes/vercel/vercel__log_type.json +++ b/model/attributes/vercel/vercel__log_type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "stdout", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__project_id.json b/model/attributes/vercel/vercel__project_id.json index e0e6230d..632d19fa 100644 --- a/model/attributes/vercel/vercel__project_id.json +++ b/model/attributes/vercel/vercel__project_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "gdufoJxB6b9b1fEqr1jUtFkyavUU", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__project_name.json b/model/attributes/vercel/vercel__project_name.json index 84a7ba35..5776e7a5 100644 --- a/model/attributes/vercel/vercel__project_name.json +++ b/model/attributes/vercel/vercel__project_name.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "my-app", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__cache_id.json b/model/attributes/vercel/vercel__proxy__cache_id.json index 1585f6cb..4efd62fc 100644 --- a/model/attributes/vercel/vercel__proxy__cache_id.json +++ b/model/attributes/vercel/vercel__proxy__cache_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "pdx1::v8g4b-1744143786684-93dafbc0f70d", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__client_ip.json b/model/attributes/vercel/vercel__proxy__client_ip.json index c7b6b186..37cc3d00 100644 --- a/model/attributes/vercel/vercel__proxy__client_ip.json +++ b/model/attributes/vercel/vercel__proxy__client_ip.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "120.75.16.101", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__host.json b/model/attributes/vercel/vercel__proxy__host.json index 8edac25d..62c8bdf9 100644 --- a/model/attributes/vercel/vercel__proxy__host.json +++ b/model/attributes/vercel/vercel__proxy__host.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "test.vercel.app", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__lambda_region.json b/model/attributes/vercel/vercel__proxy__lambda_region.json index 0b5fc786..e986c7aa 100644 --- a/model/attributes/vercel/vercel__proxy__lambda_region.json +++ b/model/attributes/vercel/vercel__proxy__lambda_region.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "sfo1", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__method.json b/model/attributes/vercel/vercel__proxy__method.json index 186331ce..85cee2d8 100644 --- a/model/attributes/vercel/vercel__proxy__method.json +++ b/model/attributes/vercel/vercel__proxy__method.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "GET", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__path.json b/model/attributes/vercel/vercel__proxy__path.json index 2a183202..3d9b47e6 100644 --- a/model/attributes/vercel/vercel__proxy__path.json +++ b/model/attributes/vercel/vercel__proxy__path.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "/dynamic/some-value.json?route=some-value", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__path_type.json b/model/attributes/vercel/vercel__proxy__path_type.json index f81374d1..3a999169 100644 --- a/model/attributes/vercel/vercel__proxy__path_type.json +++ b/model/attributes/vercel/vercel__proxy__path_type.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "func", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__path_type_variant.json b/model/attributes/vercel/vercel__proxy__path_type_variant.json index 293f56b3..4c9c7157 100644 --- a/model/attributes/vercel/vercel__proxy__path_type_variant.json +++ b/model/attributes/vercel/vercel__proxy__path_type_variant.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "api", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__referer.json b/model/attributes/vercel/vercel__proxy__referer.json index c6ba387e..cfc06280 100644 --- a/model/attributes/vercel/vercel__proxy__referer.json +++ b/model/attributes/vercel/vercel__proxy__referer.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "*.vercel.app", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__region.json b/model/attributes/vercel/vercel__proxy__region.json index 00cbccb0..41bd5e65 100644 --- a/model/attributes/vercel/vercel__proxy__region.json +++ b/model/attributes/vercel/vercel__proxy__region.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "sfo1", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__response_byte_size.json b/model/attributes/vercel/vercel__proxy__response_byte_size.json index 4fc6f4aa..d66d702c 100644 --- a/model/attributes/vercel/vercel__proxy__response_byte_size.json +++ b/model/attributes/vercel/vercel__proxy__response_byte_size.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1024, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/vercel/vercel__proxy__scheme.json b/model/attributes/vercel/vercel__proxy__scheme.json index d159a949..2a205f4d 100644 --- a/model/attributes/vercel/vercel__proxy__scheme.json +++ b/model/attributes/vercel/vercel__proxy__scheme.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "https", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__status_code.json b/model/attributes/vercel/vercel__proxy__status_code.json index 21928f23..156ab31e 100644 --- a/model/attributes/vercel/vercel__proxy__status_code.json +++ b/model/attributes/vercel/vercel__proxy__status_code.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 200, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/vercel/vercel__proxy__timestamp.json b/model/attributes/vercel/vercel__proxy__timestamp.json index aa1239cb..aeb94efc 100644 --- a/model/attributes/vercel/vercel__proxy__timestamp.json +++ b/model/attributes/vercel/vercel__proxy__timestamp.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 1573817250172, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/model/attributes/vercel/vercel__proxy__user_agent.json b/model/attributes/vercel/vercel__proxy__user_agent.json index 2f3b514d..b51234e9 100644 --- a/model/attributes/vercel/vercel__proxy__user_agent.json +++ b/model/attributes/vercel/vercel__proxy__user_agent.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": ["Mozilla/5.0..."], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__vercel_cache.json b/model/attributes/vercel/vercel__proxy__vercel_cache.json index b334b713..2fb485ba 100644 --- a/model/attributes/vercel/vercel__proxy__vercel_cache.json +++ b/model/attributes/vercel/vercel__proxy__vercel_cache.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "REVALIDATED", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__vercel_id.json b/model/attributes/vercel/vercel__proxy__vercel_id.json index f4a8566f..04380f0a 100644 --- a/model/attributes/vercel/vercel__proxy__vercel_id.json +++ b/model/attributes/vercel/vercel__proxy__vercel_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "sfo1::abc123", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__waf_action.json b/model/attributes/vercel/vercel__proxy__waf_action.json index 39b814ef..94eaeb3f 100644 --- a/model/attributes/vercel/vercel__proxy__waf_action.json +++ b/model/attributes/vercel/vercel__proxy__waf_action.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "deny", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__proxy__waf_rule_id.json b/model/attributes/vercel/vercel__proxy__waf_rule_id.json index 858bbf32..eff95453 100644 --- a/model/attributes/vercel/vercel__proxy__waf_rule_id.json +++ b/model/attributes/vercel/vercel__proxy__waf_rule_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "rule_gAHz8jtSB1Gy", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__request_id.json b/model/attributes/vercel/vercel__request_id.json index b84b0e40..2f704f94 100644 --- a/model/attributes/vercel/vercel__request_id.json +++ b/model/attributes/vercel/vercel__request_id.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "643af4e3-975a-4cc7-9e7a-1eda11539d90", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__source.json b/model/attributes/vercel/vercel__source.json index 90a40317..e32333ff 100644 --- a/model/attributes/vercel/vercel__source.json +++ b/model/attributes/vercel/vercel__source.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": "build", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.2.0", "prs": [163] diff --git a/model/attributes/vercel/vercel__status_code.json b/model/attributes/vercel/vercel__status_code.json index 4e293184..7fcc1691 100644 --- a/model/attributes/vercel/vercel__status_code.json +++ b/model/attributes/vercel/vercel__status_code.json @@ -8,10 +8,6 @@ "is_in_otel": false, "example": 200, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] diff --git a/python/src/sentry_conventions/attributes.py b/python/src/sentry_conventions/attributes.py index a2e956f8..dacd1cf0 100644 --- a/python/src/sentry_conventions/attributes.py +++ b/python/src/sentry_conventions/attributes.py @@ -3912,6 +3912,16 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: "server" """ + # Path: model/attributes/sentry/sentry__log__sequence.json + SENTRY_LOG_SEQUENCE: Literal["sentry.log.sequence"] = "sentry.log.sequence" + """A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. + + Type: int + Contains PII: false + Defined in OTEL: No + Example: 42 + """ + # Path: model/attributes/sentry/sentry__message__parameter__[key].json SENTRY_MESSAGE_PARAMETER_KEY: Literal["sentry.message.parameter."] = ( "sentry.message.parameter." @@ -4199,18 +4209,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: 200 """ - # Path: model/attributes/sentry/sentry__timestamp__sequence.json - SENTRY_TIMESTAMP_SEQUENCE: Literal["sentry.timestamp.sequence"] = ( - "sentry.timestamp.sequence" - ) - """A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one. - - Type: int - Contains PII: false - Defined in OTEL: No - Example: 0 - """ - # Path: model/attributes/sentry/sentry__trace__parent_span_id.json SENTRY_TRACE_PARENT_SPAN_ID: Literal["sentry.trace.parent_span_id"] = ( "sentry.trace.parent_span_id" @@ -4967,7 +4965,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["Citation 1", "Citation 2"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -4981,7 +4979,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.usage.output_tokens", "gen_ai.usage.completion_tokens"], sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57, 61]), ChangelogEntry(version="0.0.0"), @@ -4995,7 +4992,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["document1.txt", "document2.pdf"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5008,7 +5005,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.response.finish_reason"), aliases=["gen_ai.response.finish_reasons"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108, 127]), ], ), @@ -5021,7 +5017,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.frequency_penalty"), aliases=["gen_ai.request.frequency_penalty"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5035,7 +5030,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.name"), aliases=["gen_ai.tool.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], ), @@ -5048,7 +5042,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.response.id"), aliases=["gen_ai.response.id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108, 127]), ], ), @@ -5062,7 +5055,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.request.messages"], sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[65, 119]), ChangelogEntry(version="0.0.0"), ], @@ -5075,7 +5067,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=False, deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5087,7 +5079,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='{"user_id": 123, "session_id": "abc123"}', deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55, 127]), ], ), @@ -5100,7 +5092,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.provider.name"), aliases=["gen_ai.provider.name", "gen_ai.system"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[253]), ChangelogEntry(version="0.1.0", prs=[57, 61, 108, 127]), ], @@ -5115,7 +5106,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.response.model"], sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5129,7 +5119,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.pipeline.name"), aliases=["gen_ai.pipeline.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[53, 76, 108, 127]), ], ), @@ -5142,7 +5131,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.system_instructions"), aliases=["gen_ai.system_instructions"], changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5155,7 +5144,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.presence_penalty"), aliases=["gen_ai.request.presence_penalty"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5170,7 +5158,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.usage.prompt_tokens", "gen_ai.usage.input_tokens"], sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57, 61]), ChangelogEntry(version="0.0.0"), @@ -5184,7 +5171,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=True, deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5196,7 +5183,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="json_object", deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55, 127]), ], ), @@ -5209,7 +5196,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.response.text"), sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[65, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5222,7 +5208,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["climate change effects", "renewable energy"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5234,7 +5220,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["search_result_1, search_result_2"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5247,7 +5233,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.seed"), aliases=["gen_ai.request.seed"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108, 127]), ], ), @@ -5261,7 +5246,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.response.streaming"], sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[76, 108]), ChangelogEntry(version="0.0.0"), ], @@ -5274,7 +5258,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='{"executed_function": "add_integers"}', deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55, 127]), ], ), @@ -5287,7 +5271,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.temperature"), aliases=["gen_ai.request.temperature"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5301,7 +5284,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.input.messages"), aliases=["gen_ai.input.messages"], changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5313,7 +5296,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["tool_call_1", "tool_call_2"], deprecation=DeprecationInfo(replacement="gen_ai.response.tool_calls"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 65]), ], ), @@ -5325,7 +5307,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["function_1", "function_2"], deprecation=DeprecationInfo(replacement="gen_ai.request.available_tools"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[55, 65, 127]), ], ), @@ -5338,7 +5319,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.top_k"), aliases=["gen_ai.request.top_k"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5352,7 +5332,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.request.top_p"), aliases=["gen_ai.request.top_p"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[55, 57, 61, 108]), ], @@ -5366,7 +5345,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.cost.total_tokens"), aliases=["gen_ai.cost.total_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[53]), ], @@ -5381,7 +5360,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["gen_ai.usage.total_tokens"], sdks=["python"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57, 61, 108]), ChangelogEntry(version="0.0.0"), @@ -5395,7 +5373,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["Token limit exceeded"], deprecation=DeprecationInfo(), changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.1.0", prs=[55]), ], ), @@ -5406,7 +5384,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="cold", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5418,7 +5395,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5430,7 +5406,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Chrome", aliases=["sentry.browser.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127, 139]), ChangelogEntry(version="0.0.0"), ], @@ -5442,7 +5417,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="network-error", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -5454,7 +5428,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Window.requestAnimationFrame", sdks=["browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5467,7 +5440,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="event-listener", sdks=["browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5480,7 +5452,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=678, sdks=["browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5493,7 +5464,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="120.0.6099.130", aliases=["sentry.browser.version"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[59, 127, 139]), ], ), @@ -5505,7 +5475,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=True, sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5516,7 +5485,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=58, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5529,7 +5497,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["my-cache-key", "my-other-cache-key"], sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5541,7 +5508,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="get", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5554,7 +5520,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=120, sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5567,7 +5532,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="mail", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5580,7 +5544,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="example.com", aliases=["http.client_ip"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[106, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5592,7 +5555,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=5432, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5605,7 +5567,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=543, sdks=["javascript-cloudflare"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5618,7 +5579,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=12, sdks=["javascript-cloudflare"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5631,7 +5591,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=12, sdks=["javascript-cloudflare"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5644,7 +5603,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/app/myapplication/http/handler/server.py", aliases=["code.filepath"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5657,7 +5615,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="code.file.path"), aliases=["code.file.path"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -5671,7 +5628,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="code.function.name"), aliases=["code.function.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 74]), ChangelogEntry(version="0.0.0"), ], @@ -5684,7 +5640,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="server_request", aliases=["code.function"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5697,7 +5652,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=42, aliases=["code.lineno"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -5711,7 +5665,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="code.line.number"), aliases=["code.line.number"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61, 108]), ChangelogEntry(version="0.0.0"), @@ -5728,7 +5681,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="code.function.name should include the namespace.", ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 74]), ChangelogEntry(version="0.0.0"), ], @@ -5740,7 +5692,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="GregorianCalendar", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5751,7 +5702,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="English (United States)", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5762,7 +5712,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5773,7 +5722,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="en-US", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5784,7 +5732,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Europe/Vienna", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[243]), ], ), @@ -5795,7 +5742,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="users", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[106, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5809,7 +5755,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="db.namespace"), aliases=["db.namespace"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -5822,7 +5767,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="customers", aliases=["db.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5838,7 +5782,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["db.operation.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[199]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), @@ -5852,7 +5795,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="SELECT", aliases=["db.operation"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5865,7 +5807,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="db.query.parameter.foo='123'", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103, 127]), ], ), @@ -5876,7 +5817,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="SELECT users;", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[208]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), @@ -5890,7 +5830,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="SELECT * FROM users WHERE id = $1", aliases=["db.statement"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[208]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), @@ -5904,7 +5843,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="my-redis-instance", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5917,7 +5855,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=["test", "*"], sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -5933,7 +5870,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -5949,7 +5885,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["db.query.text"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[199]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), @@ -5966,7 +5901,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["db.system.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[199, 224]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), @@ -5980,7 +5914,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="postgresql", aliases=["db.system"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -5992,7 +5925,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="fancy_user", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6003,7 +5935,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Apple", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116, 127]), ], ), @@ -6014,7 +5945,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="iPhone", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116, 127]), ], ), @@ -6025,7 +5955,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="iPhone 15 Pro Max", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116, 127]), ], ), @@ -6038,7 +5967,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.environment"), aliases=["sentry.environment"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6050,7 +5978,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="timeout", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6062,7 +5989,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1234567890, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[101]), ], ), @@ -6073,7 +5999,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Process Payload", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[101, 127]), ], ), @@ -6084,7 +6009,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6095,7 +6019,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="ENOENT: no such file or directory", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6107,7 +6030,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example='Exception in thread "main" java.lang.RuntimeException: Test exception\n at com.example.GenerateTrace.methodB(GenerateTrace.java:13)\n at com.example.GenerateTrace.methodA(GenerateTrace.java:9)\n at com.example.GenerateTrace.main(GenerateTrace.java:5)', changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6119,7 +6041,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="OSError", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6131,7 +6052,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6142,7 +6062,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="0/5 * * * ? *", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6154,7 +6073,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="2020-01-23T13:47:06Z", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6166,7 +6084,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="timer", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6179,7 +6096,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="flag.evaluation.is_new_ui=true", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -6190,7 +6106,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=5, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6202,7 +6117,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=3, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6214,7 +6128,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6226,7 +6139,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=60, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6243,7 +6155,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), sdks=["javascript-node"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6255,7 +6166,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="ResearchAssistant", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6266,7 +6176,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="conv_5j66UpCpwteGg4YSxUnt7lPY", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[250]), ], ), @@ -6277,7 +6186,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=123.45, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ], @@ -6289,7 +6197,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=123.45, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ], @@ -6302,7 +6209,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=12.34, aliases=["ai.total_cost"], changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[126]), ], @@ -6314,7 +6221,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="What's the weather in Paris?", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[195]), ], ), @@ -6326,7 +6232,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='[{"role": "user", "parts": [{"type": "text", "content": "Weather in Paris?"}]}, {"role": "assistant", "parts": [{"type": "tool_call", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "name": "get_weather", "arguments": {"location": "Paris"}}]}, {"role": "tool", "parts": [{"type": "tool_call_response", "id": "call_VSPygqKTWdrhaFErNvMV18Yl", "result": "rainy, 57°F"}]}]', aliases=["ai.texts"], changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6337,7 +6243,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="chat", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[225]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], @@ -6349,7 +6254,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="tool", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[257]), ChangelogEntry(version="0.1.0", prs=[113, 127]), ], @@ -6361,7 +6265,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example='[{"role": "assistant", "parts": [{"type": "text", "content": "The weather in Paris is currently rainy with a temperature of 57°F."}], "finish_reason": "stop"}]', changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6373,7 +6276,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Autofix Pipeline", aliases=["ai.pipeline.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[76, 127]), ], ), @@ -6387,7 +6289,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated from OTEL, use gen_ai.input.messages with the new format instead." ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[74, 108, 119]), ChangelogEntry(version="0.0.0"), ], @@ -6400,7 +6301,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="openai", aliases=["ai.model.provider", "gen_ai.system"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[253]), ], ), @@ -6412,7 +6312,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='[{"name": "get_weather", "description": "Get the weather for a given location"}, {"name": "get_news", "description": "Get the news for a given topic"}]', deprecation=DeprecationInfo(replacement="gen_ai.tool.definitions"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 127]), ], @@ -6425,7 +6324,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.5, aliases=["ai.frequency_penalty"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6437,7 +6335,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=2048, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[62]), ], @@ -6451,7 +6348,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.input.messages"), aliases=["ai.input_messages"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 74, 108, 119, 122]), ], @@ -6463,7 +6359,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="gpt-4-turbo-preview", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6475,7 +6370,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.5, aliases=["ai.presence_penalty"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6488,7 +6382,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="1234567890", aliases=["ai.seed"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6500,7 +6393,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.1, aliases=["ai.temperature"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6513,7 +6405,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=35, aliases=["ai.top_k"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6526,7 +6417,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=0.7, aliases=["ai.top_p"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6539,7 +6429,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="COMPLETE", aliases=["ai.finish_reason"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6551,7 +6440,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="gen_123abc", aliases=["ai.generation_id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6563,7 +6451,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="gpt-4", aliases=["ai.model_id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6576,7 +6463,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=True, aliases=["ai.streaming"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[76]), ], ), @@ -6588,7 +6474,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='["The weather in Paris is rainy and overcast, with temperatures around 57°F", "The weather in London is sunny and warm, with temperatures around 65°F"]', deprecation=DeprecationInfo(replacement="gen_ai.output.messages"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], @@ -6600,7 +6485,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.6853435, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[227]), ], ), @@ -6611,7 +6495,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=12345.67, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[66]), ], @@ -6624,7 +6507,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='[{"name": "get_weather", "arguments": {"location": "Paris"}}]', deprecation=DeprecationInfo(replacement="gen_ai.output.messages"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], @@ -6638,7 +6520,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.provider.name"), aliases=["ai.model.provider", "gen_ai.provider.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[253]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], @@ -6651,7 +6532,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="You are a helpful assistant", deprecation=DeprecationInfo(replacement="gen_ai.system_instructions"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ChangelogEntry(version="0.1.0", prs=[62]), ], @@ -6664,7 +6544,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="You are a helpful assistant", aliases=["ai.preamble"], changelog=[ - ChangelogEntry(version="next", prs=[264, 270]), + ChangelogEntry(version="next", prs=[264]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6676,7 +6556,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example='{"location": "Paris"}', aliases=["gen_ai.tool.input"], changelog=[ - ChangelogEntry(version="next", prs=[265, 270]), + ChangelogEntry(version="next", prs=[265]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6688,7 +6568,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="rainy, 57°F", aliases=["gen_ai.tool.output", "gen_ai.tool.message"], changelog=[ - ChangelogEntry(version="next", prs=[265, 270]), + ChangelogEntry(version="next", prs=[265]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6699,7 +6579,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example='[{"type": "function", "name": "get_current_weather", "description": "Get the current weather in a given location", "parameters": {"type": "object", "properties": {"location": {"type": "string", "description": "The city and state, e.g. San Francisco, CA"}, "unit": {"type": "string", "enum": ["celsius", "fahrenheit"]}}, "required": ["location", "unit"]}}]', changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[221]), ], ), @@ -6710,7 +6589,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Searches the web for current information about a topic", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6723,7 +6601,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.call.arguments"), aliases=["gen_ai.tool.call.arguments"], changelog=[ - ChangelogEntry(version="next", prs=[265, 270]), + ChangelogEntry(version="next", prs=[265]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], ), @@ -6736,7 +6614,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.call.result"), aliases=["gen_ai.tool.call.result", "gen_ai.tool.output"], changelog=[ - ChangelogEntry(version="next", prs=[265, 270]), + ChangelogEntry(version="next", prs=[265]), ChangelogEntry(version="0.1.0", prs=[62]), ], ), @@ -6748,7 +6626,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Flights", aliases=["ai.function_call"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[57, 127]), ], ), @@ -6761,7 +6638,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.tool.call.result"), aliases=["gen_ai.tool.call.result", "gen_ai.tool.message"], changelog=[ - ChangelogEntry(version="next", prs=[265, 270]), + ChangelogEntry(version="next", prs=[265]), ChangelogEntry(version="0.1.0", prs=[63, 74]), ], ), @@ -6772,7 +6649,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="function", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[62, 127]), ], ), @@ -6785,7 +6661,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.usage.output_tokens"), aliases=["ai.completion_tokens.used", "gen_ai.usage.output_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -6799,7 +6674,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=10, aliases=["ai.prompt_tokens.used", "gen_ai.usage.prompt_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[261, 270]), + ChangelogEntry(version="next", prs=[261]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ChangelogEntry(version="0.0.0"), @@ -6812,7 +6687,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=100, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[217, 228]), ], ), @@ -6823,7 +6697,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=50, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[62, 112]), ], @@ -6836,7 +6709,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=10, aliases=["ai.completion_tokens.used", "gen_ai.usage.completion_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[261, 270]), + ChangelogEntry(version="next", prs=[261]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[112]), ChangelogEntry(version="0.0.0"), @@ -6849,7 +6722,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=75, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[62, 112]), ], @@ -6863,7 +6735,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="gen_ai.usage.input_tokens"), aliases=["ai.prompt_tokens.used", "gen_ai.usage.input_tokens"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -6877,7 +6748,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=20, aliases=["ai.total_tokens.used"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[57]), ], @@ -6889,7 +6759,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="findBookById", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6901,7 +6770,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="query", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -6915,7 +6783,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="client.address"), aliases=["client.address"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 106, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6928,7 +6795,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=456, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -6942,7 +6808,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.protocol.version"), aliases=["network.protocol.version", "net.protocol.version"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6954,7 +6819,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="#details", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -6975,7 +6839,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "net.host.name", ], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -6989,7 +6852,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="http.request.method"), aliases=["http.request.method"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7004,7 +6866,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="?foo=bar&bar=baz", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -7016,7 +6877,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.111, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7030,7 +6890,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.15, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7044,7 +6903,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.201, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7058,7 +6916,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.322, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7072,7 +6929,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.389, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7086,7 +6942,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="http.request.header.custom-header=['foo', 'bar']", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[201, 204]), ChangelogEntry(version="0.1.0", prs=[103]), ], @@ -7099,7 +6954,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="GET", aliases=["method", "http.method"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7112,7 +6966,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829558.502, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[130, 134]), ], @@ -7125,7 +6978,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.495, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7139,7 +6991,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.51, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7152,7 +7003,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=2, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7165,7 +7015,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.89, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7179,7 +7028,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.7, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7193,7 +7041,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829555.73, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[134]), ChangelogEntry(version="0.0.0"), @@ -7207,7 +7054,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1.032, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[131]), ], @@ -7220,7 +7066,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732829553.68, sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[130, 134]), ], @@ -7233,7 +7078,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=123, aliases=["http.response_content_length", "http.response.header.content-length"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[106]), ChangelogEntry(version="0.0.0"), @@ -7247,7 +7091,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="http.response.header.custom-header=['foo', 'bar']", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[201, 204]), ChangelogEntry(version="0.1.0", prs=[103]), ], @@ -7260,7 +7103,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="http.response.header.custom-header=['foo', 'bar']", aliases=["http.response_content_length", "http.response.body.size"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7273,7 +7115,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=456, aliases=["http.response_transfer_size"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7286,7 +7127,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=404, aliases=["http.status_code"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7302,7 +7142,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["http.response.body.size", "http.response.header.content-length"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61, 106]), ChangelogEntry(version="0.0.0"), @@ -7319,7 +7158,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ), aliases=["http.response.size"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -7333,7 +7171,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/users/:id", aliases=["url.template"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7347,7 +7184,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="url.scheme"), aliases=["url.scheme"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7360,7 +7196,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=50, sdks=["ruby"], changelog=[ - ChangelogEntry(version="next", prs=[267, 270]), + ChangelogEntry(version="next", prs=[267]), ], ), "http.server_name": AttributeMetadata( @@ -7372,7 +7208,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="server.address"), aliases=["server.address", "net.host.name", "http.host"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7386,7 +7221,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="http.response.status_code"), aliases=["http.response.status_code"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -7403,7 +7237,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="This attribute is being deprecated in favor of url.path and url.query", ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -7417,7 +7250,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="url.full"), aliases=["url.full", "url"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108]), ChangelogEntry(version="0.0.0"), ], @@ -7431,7 +7263,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="user_agent.original"), aliases=["user_agent.original"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -7444,7 +7275,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="f47ac10b58cc4372a5670e02b2c3d479", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -7455,7 +7285,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="end of minor GC", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7467,7 +7296,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="G1 Young Generation", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7479,7 +7307,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="G1 Old Gen", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7491,7 +7318,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="G1 Old Gen", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7503,7 +7329,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -7514,7 +7339,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="blocked", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7526,7 +7350,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="img", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7538,7 +7361,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="#hero", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7550,7 +7372,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1234, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -7562,7 +7383,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https://example.com", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7574,7 +7394,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="myLogger", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -7589,7 +7408,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="User cancelled the request", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7600,7 +7418,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="123", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7611,7 +7428,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="claude-desktop", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7625,7 +7441,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Claude Desktop", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7636,7 +7451,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1.0.0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7647,7 +7461,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="initialization_complete", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7658,7 +7471,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="string", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7669,7 +7481,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="info", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7683,7 +7494,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="mcp_server", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7694,7 +7504,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Tool execution completed successfully", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7705,7 +7514,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="tools/call", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7716,7 +7524,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=50, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7731,7 +7538,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Processing 50 of 100 items", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7742,7 +7548,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=50, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7754,7 +7559,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="progress-token-123", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7765,7 +7569,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=100, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7780,7 +7583,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="summarize", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7791,7 +7593,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="A summary of the requested information", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7802,7 +7603,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Please provide a summary of the document", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7813,7 +7613,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=3, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7825,7 +7624,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="user", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7836,7 +7634,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -7848,7 +7645,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="2024-11-05", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7860,7 +7656,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="mcp.request.argument.query='weather in Paris'", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[176]), ], ), @@ -7871,7 +7666,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="summarize", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7882,7 +7676,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="file:///path/to/resource", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7893,7 +7686,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7904,7 +7696,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="file", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7915,7 +7706,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="file:///path/to/file.txt", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7926,7 +7716,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sentry-mcp-server", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7940,7 +7729,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Sentry MCP Server", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7951,7 +7739,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="0.1.0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7962,7 +7749,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="550e8400-e29b-41d4-a716-446655440000", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7973,7 +7759,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="calculator", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -7984,7 +7769,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example='{"output": "rainy", "toolCallId": "1"}', changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ChangelogEntry(version="0.2.0", prs=[164]), ], @@ -7996,7 +7780,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[171]), ], @@ -8008,7 +7791,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=False, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -8019,7 +7801,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="stdio", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[171]), ], ), @@ -8032,7 +7813,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="mdc.some_key='some_value'", sdks=["java", "java.logback", "java.jul", "java.log4j2"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[176]), ], ), @@ -8044,7 +7824,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="BestTopic", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8057,7 +7836,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="BestTopic", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8070,7 +7848,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=839, sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8083,7 +7860,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1045, sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8096,7 +7872,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="f47ac10b58cc4372a5670e02b2c3d479", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8109,7 +7884,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1732847252, sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8122,7 +7896,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=2, sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8134,7 +7907,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="create", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[51, 127]), ], ), @@ -8146,7 +7918,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="activemq", sdks=["php-laravel"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8161,7 +7932,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["http.request.method"], sdks=["javascript-browser", "javascript-node"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8173,7 +7943,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="router.push", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8185,7 +7954,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=100, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[68]), ], @@ -8197,7 +7965,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="application", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -8208,7 +7975,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https://example.com/foo?bar=baz", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -8219,7 +7985,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.5, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[68]), ], @@ -8231,7 +7996,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="dns.unreachable", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68, 127]), ], ), @@ -8244,7 +8008,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.local.address"), aliases=["network.local.address", "net.sock.host.addr"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8258,7 +8021,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="server.address"), aliases=["server.address", "http.server_name", "http.host"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8272,7 +8034,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="server.port"), aliases=["server.port"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8287,7 +8048,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.peer.address"), aliases=["network.peer.address", "net.sock.peer.addr"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8303,7 +8063,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated, use server.address on client spans and client.address on server spans.", ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8319,7 +8078,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated, use server.port on client spans and client.port on server spans.", ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8334,7 +8092,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.protocol.name"), aliases=["network.protocol.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8348,7 +8105,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.protocol.version"), aliases=["network.protocol.version", "http.flavor"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8364,7 +8120,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated, use network.transport and network.type.", ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8378,7 +8133,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.local.address"), aliases=["network.local.address", "net.host.ip"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8392,7 +8146,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.local.port"), aliases=["network.local.port"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8407,7 +8160,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.peer.address"), aliases=["network.peer.address", "net.peer.ip"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8422,7 +8174,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Deprecated from OTEL, no replacement at this time" ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 119, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8435,7 +8186,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=8080, deprecation=DeprecationInfo(replacement="network.peer.port"), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), @@ -8450,7 +8200,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="network.transport"), aliases=["network.transport"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8463,7 +8212,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="10.1.2.80", aliases=["net.host.ip", "net.sock.host.addr"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8476,7 +8224,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=65400, aliases=["net.sock.host.port"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8489,7 +8236,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="10.1.2.80", aliases=["net.peer.ip", "net.sock.peer.addr"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8501,7 +8247,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=65400, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8514,7 +8259,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="http", aliases=["net.protocol.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8527,7 +8271,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="1.1", aliases=["http.flavor", "net.protocol.version"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8540,7 +8283,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="tcp", aliases=["net.transport"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8552,7 +8294,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="ipv4", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8564,7 +8305,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="1234567890", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8576,7 +8316,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Ubuntu 18.04.1 LTS", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8588,7 +8327,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Ubuntu", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8600,7 +8338,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="linux", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8612,7 +8349,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="18.04.2", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8624,7 +8360,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="io.opentelemetry.contrib.mongodb", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8636,7 +8371,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="2.4.5", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8648,7 +8382,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="OK", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8660,7 +8393,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="resource not found", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8674,7 +8406,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="params.id='123'", aliases=["url.path.parameter."], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8686,7 +8417,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="HomeScreen", sdks=["javascript-reactnative"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[74]), ChangelogEntry(version="0.0.0"), ], @@ -8698,7 +8428,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="getsentry", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8710,7 +8439,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=12345, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8722,7 +8450,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="Eclipse OpenJ9 VM openj9-0.21.0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8734,7 +8461,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="node", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8746,7 +8472,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="18.04.2", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8763,7 +8488,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): reason="Instead of sending items individually in query., they should be sent all together with url.query.", ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8776,7 +8500,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.release"), aliases=["sentry.release"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -8790,7 +8513,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="http.response.header.text='test'", sdks=["javascript-remix"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -8803,7 +8525,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.replay_id"), aliases=["sentry.replay_id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -8818,7 +8539,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): replacement="sentry.environment", status=DeprecationStatus.BACKFILL ), changelog=[ - ChangelogEntry(version="next", prs=[266, 270]), + ChangelogEntry(version="next", prs=[266]), ], ), "resource.deployment.environment.name": AttributeMetadata( @@ -8831,7 +8552,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): replacement="sentry.environment", status=DeprecationStatus.BACKFILL ), changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[196]), ], ), @@ -8843,7 +8563,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="non-blocking", sdks=["javascript-browser"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8858,7 +8577,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["http.route"], sdks=["php-laravel", "javascript-reactnative"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 74]), ChangelogEntry(version="0.0.0"), ], @@ -8870,7 +8588,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=2, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -8882,7 +8599,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="myService.BestService", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -8894,7 +8610,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="SELECT", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -8907,7 +8622,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="browser.name"), aliases=["browser.name"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[139]), ], ), @@ -8920,7 +8634,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="browser.version"), aliases=["browser.version"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[139]), ], ), @@ -8931,7 +8644,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="document.hidden", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8942,7 +8654,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="db", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[218]), ], ), @@ -8953,7 +8664,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.5, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[102]), ], ), @@ -8964,7 +8674,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="index view query", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[135]), ], ), @@ -8975,7 +8684,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1.0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -8986,7 +8694,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="example.com", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -8997,7 +8704,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="prod", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9008,7 +8714,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="c51734c603c4430eb57cb0a5728a479d", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9019,7 +8724,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="frontend@e8211be71b214afab5b85de4b4c54be3714952bb", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9030,7 +8734,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1.0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9041,7 +8744,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9052,7 +8754,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="047372980460430cbc78d9779df33a46", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9063,7 +8764,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="/issues/errors-outages/", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9075,7 +8775,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="production", aliases=["environment"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9086,7 +8785,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1234, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.3.0", prs=[160]), ChangelogEntry(version="0.0.0"), @@ -9099,7 +8797,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="getUserById", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), @@ -9109,7 +8806,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): pii=PiiInfo(isPii=IsPii.FALSE), is_in_otel=False, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -9120,7 +8816,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9131,7 +8826,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="idleTimeout", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9142,7 +8836,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), @@ -9153,10 +8846,16 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="server", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), + "sentry.log.sequence": AttributeMetadata( + brief="A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", + type=AttributeType.INTEGER, + pii=PiiInfo(isPii=IsPii.FALSE), + is_in_otel=False, + example=42, + ), "sentry.message.parameter.": AttributeMetadata( brief="A parameter used in the message template. can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0, sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id, sentry.message.parameter.user_id, etc)", type=AttributeType.STRING, @@ -9164,7 +8863,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sentry.message.parameter.0='123'", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116]), ], ), @@ -9175,7 +8873,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Hello, {name}!", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116]), ], ), @@ -9187,7 +8884,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): has_dynamic_suffix=True, example="sentry.module.brianium/paratest='v7.7.0'", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -9199,7 +8895,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/posts/[id]/layout", sdks=["javascript"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[54, 106]), ], ), @@ -9211,7 +8906,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="generateMetadata", sdks=["javascript"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[54, 106]), ], ), @@ -9222,7 +8916,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="SELECT .. FROM sentry_project WHERE (project_id = %s)", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[194]), ], ), @@ -9232,7 +8925,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): pii=PiiInfo(isPii=IsPii.FALSE), is_in_otel=False, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[200]), ], ), @@ -9243,7 +8935,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="SELECT .. FROM sentry_project WHERE (project_id = %s)", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[212]), ], ), @@ -9254,7 +8945,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1544712660300000000", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[174]), ChangelogEntry(version="0.2.0", prs=[137]), ], @@ -9266,7 +8956,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="http.client", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9277,7 +8966,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="auto.http.otel.fastify", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[68]), ChangelogEntry(version="0.0.0"), ], @@ -9289,7 +8977,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="php", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9300,7 +8987,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="18779b64dd35d1a538e7ce2dd2d3fad3", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[242]), ], ), @@ -9312,7 +8998,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="7.0.0", aliases=["service.version", "release"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9324,7 +9009,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="123e4567e89b12d3a456426614174000", aliases=["replay_id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9335,7 +9019,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[185]), ], ), @@ -9351,7 +9034,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "Breadcrumbs", ], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0", prs=[42]), ], ), @@ -9362,7 +9044,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="@sentry/react", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9373,7 +9054,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="7.0.0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9385,7 +9065,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="051581bf3cb55c13", aliases=["sentry.segment_id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[107, 124]), ], ), @@ -9396,7 +9075,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="GET /user", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[104]), ], ), @@ -9409,7 +9087,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.segment.id"), aliases=["sentry.segment.id"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[124]), ], ), @@ -9420,7 +9097,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=0.5, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[102]), ], ), @@ -9431,7 +9107,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="route", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[214]), ChangelogEntry(version="0.0.0"), ], @@ -9443,7 +9118,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="foobar", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.1", prs=[190]), ], ), @@ -9454,17 +9128,9 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=200, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[223, 228]), ], ), - "sentry.timestamp.sequence": AttributeMetadata( - brief="A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.", - type=AttributeType.INTEGER, - pii=PiiInfo(isPii=IsPii.FALSE), - is_in_otel=False, - example=0, - ), "sentry.trace.parent_span_id": AttributeMetadata( brief="The span id of the span that was active when the log was collected. This should not be set if there was no active span.", type=AttributeType.STRING, @@ -9472,7 +9138,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="b0e6f15b45c36b12", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[116]), ], ), @@ -9484,7 +9149,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="GET /", aliases=["transaction"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9496,7 +9160,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="example.com", aliases=["http.server_name", "net.host.name", "http.host"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[108, 127]), ChangelogEntry(version="0.0.0"), ], @@ -9509,7 +9172,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example=1337, aliases=["net.host.port"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -9521,7 +9183,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="omegastar", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9534,7 +9195,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="5.0.0", aliases=["sentry.release"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9546,7 +9206,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=56, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9557,7 +9216,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="main", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9570,7 +9228,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="MyTag", sdks=["sentry.java.android"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.3.0", prs=[183]), ], ), @@ -9583,7 +9240,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): deprecation=DeprecationInfo(replacement="sentry.transaction"), aliases=["sentry.transaction"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61, 127]), ChangelogEntry(version="0.0.0"), ], @@ -9596,7 +9252,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="fetch", sdks=["javascript-browser", "javascript-node"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9607,7 +9262,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="HomeButton", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9619,7 +9273,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9630,7 +9283,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=True, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9641,7 +9293,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="example.com", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9653,7 +9304,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="details", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9665,7 +9315,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="https://example.com/test?foo=bar#buzz", aliases=["http.url", "url"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[108]), ChangelogEntry(version="0.0.0"), ], @@ -9677,7 +9326,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="/foo", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9690,7 +9338,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="url.path.parameter.id='123'", aliases=["params."], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[103]), ], ), @@ -9701,7 +9348,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=1337, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.0.0"), ], @@ -9716,7 +9362,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="foo=bar&bar=baz", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9728,7 +9373,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="https", aliases=["http.scheme"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9741,7 +9385,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="/users/:id", aliases=["http.route"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9756,7 +9399,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): aliases=["url.full", "http.url"], sdks=["javascript-browser", "javascript-node"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[61]), ChangelogEntry(version="0.0.0"), ], @@ -9768,7 +9410,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="test@example.com", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9779,7 +9420,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="John Smith", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9790,7 +9430,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Toronto", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9801,7 +9440,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="CA", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9812,7 +9450,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Canada", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9823,7 +9460,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="Ontario", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9834,7 +9470,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9845,7 +9480,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="S-1-5-21-202424912787-2692429404-2351956786-1000", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9856,7 +9490,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="192.168.1.1", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[75]), ], ), @@ -9867,7 +9500,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example="j.smith", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9878,7 +9510,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=True, example=["admin", "editor"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.0.0"), ], ), @@ -9890,7 +9521,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): example="Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1", aliases=["http.user_agent"], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.1.0", prs=[127]), ChangelogEntry(version="0.0.0"), ], @@ -9902,7 +9532,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="main", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9913,7 +9542,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="bld_cotnkcr76", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9924,7 +9552,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="dpl_233NRGRjVZX1caZrXWtz5g1TAksD", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9935,7 +9562,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https://vitals.vercel-insights.com/v1", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9946,7 +9572,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="edge-function", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9957,7 +9582,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="api/index.js", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9968,7 +9592,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9979,7 +9602,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="1573817187330377061717300000", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -9990,7 +9612,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="769,47-53-5-10-49161-49162-49171-49172-50-56-19-4,0-10-11,23-24-25,0", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10001,7 +9622,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="t13d1516h2_8daaf6152771_02713d6af862", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10012,7 +9632,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="stdout", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10023,7 +9642,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="gdufoJxB6b9b1fEqr1jUtFkyavUU", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10034,7 +9652,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="my-app", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10045,7 +9662,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="pdx1::v8g4b-1744143786684-93dafbc0f70d", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10056,7 +9672,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="120.75.16.101", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10067,7 +9682,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="test.vercel.app", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10078,7 +9692,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10089,7 +9702,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="GET", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10100,7 +9712,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="/dynamic/some-value.json?route=some-value", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10111,7 +9722,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="func", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10122,7 +9732,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="api", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10133,7 +9742,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="*.vercel.app", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10144,7 +9752,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10155,7 +9762,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1024, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -10167,7 +9773,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="https", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10178,7 +9783,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=200, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -10190,7 +9794,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=1573817250172, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -10202,7 +9805,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=["Mozilla/5.0..."], changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10213,7 +9815,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="REVALIDATED", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10224,7 +9825,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="sfo1::abc123", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10235,7 +9835,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="deny", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10246,7 +9845,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="rule_gAHz8jtSB1Gy", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10257,7 +9855,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="643af4e3-975a-4cc7-9e7a-1eda11539d90", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10268,7 +9865,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example="build", changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.2.0", prs=[163]), ], ), @@ -10279,7 +9875,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): is_in_otel=False, example=200, changelog=[ - ChangelogEntry(version="next", prs=[270]), ChangelogEntry(version="0.4.0", prs=[228]), ChangelogEntry(version="0.2.0", prs=[163]), ], @@ -10625,6 +10220,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.idle_span_finish_reason": str, "sentry.is_remote": bool, "sentry.kind": str, + "sentry.log.sequence": int, "sentry.message.parameter.": str, "sentry.message.template": str, "sentry.module.": str, @@ -10651,7 +10247,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.span.source": str, "sentry.status.message": str, "sentry.status_code": int, - "sentry.timestamp.sequence": int, "sentry.trace.parent_span_id": str, "sentry.transaction": str, "server.address": str, diff --git a/shared/deprecated_attributes.json b/shared/deprecated_attributes.json index 02ce7497..76c15e9e 100644 --- a/shared/deprecated_attributes.json +++ b/shared/deprecated_attributes.json @@ -16,10 +16,6 @@ }, "alias": ["sentry.environment"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -45,10 +41,6 @@ "example": "ENOENT: no such file or directory", "sdks": ["javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -74,10 +66,6 @@ "alias": ["http.request.method"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -102,10 +90,6 @@ }, "alias": ["sentry.release"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -130,10 +114,6 @@ }, "alias": ["sentry.replay_id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] @@ -159,10 +139,6 @@ "alias": ["http.route"], "sdks": ["php-laravel", "javascript-reactnative"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 74] @@ -187,10 +163,6 @@ }, "alias": ["sentry.transaction"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -216,10 +188,6 @@ "alias": ["url.full", "http.url"], "sdks": ["javascript-browser", "javascript-node"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] @@ -244,7 +212,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -268,10 +236,6 @@ "replacement": "gen_ai.usage.output_tokens" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -300,7 +264,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -323,10 +287,6 @@ }, "alias": ["gen_ai.response.finish_reasons"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] @@ -348,10 +308,6 @@ }, "alias": ["gen_ai.request.frequency_penalty"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -377,10 +333,6 @@ }, "alias": ["gen_ai.tool.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108] @@ -402,10 +354,6 @@ }, "alias": ["gen_ai.response.id"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] @@ -428,10 +376,6 @@ "replacement": "gen_ai.request.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [65, 119] @@ -456,7 +400,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -479,7 +423,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -502,10 +446,6 @@ }, "alias": ["gen_ai.provider.name", "gen_ai.system"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [253] @@ -532,10 +472,6 @@ "replacement": "gen_ai.response.model" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [57, 61, 127] @@ -560,10 +496,6 @@ }, "alias": ["gen_ai.pipeline.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [53, 76, 108, 127] @@ -587,7 +519,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -610,10 +542,6 @@ }, "alias": ["gen_ai.request.presence_penalty"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -640,10 +568,6 @@ "replacement": "gen_ai.usage.input_tokens" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -672,7 +596,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -695,7 +619,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -718,10 +642,6 @@ "replacement": "gen_ai.response.text" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [65, 127] @@ -746,7 +666,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -769,7 +689,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -792,10 +712,6 @@ }, "alias": ["gen_ai.request.seed"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 57, 61, 108, 127] @@ -818,10 +734,6 @@ }, "alias": ["gen_ai.response.streaming"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [76, 108] @@ -846,7 +758,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -869,10 +781,6 @@ }, "alias": ["gen_ai.request.temperature"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -900,7 +808,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -922,10 +830,6 @@ "replacement": "gen_ai.response.tool_calls" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 65] @@ -946,10 +850,6 @@ "replacement": "gen_ai.request.available_tools" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [55, 65, 127] @@ -971,10 +871,6 @@ }, "alias": ["gen_ai.request.top_k"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1000,10 +896,6 @@ }, "alias": ["gen_ai.request.top_p"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1031,7 +923,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.4.0", @@ -1059,10 +951,6 @@ }, "alias": ["gen_ai.usage.total_tokens"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1091,7 +979,7 @@ "changelog": [ { "version": "next", - "prs": [264, 270] + "prs": [264] }, { "version": "0.1.0", @@ -1114,10 +1002,6 @@ }, "alias": ["code.file.path"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] @@ -1142,10 +1026,6 @@ }, "alias": ["code.function.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 74] @@ -1170,10 +1050,6 @@ }, "alias": ["code.line.number"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1202,10 +1078,6 @@ "reason": "code.function.name should include the namespace." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 74] @@ -1230,10 +1102,6 @@ }, "alias": ["db.namespace"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -1258,10 +1126,6 @@ }, "alias": ["db.operation.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [199] @@ -1291,10 +1155,6 @@ "example": ["1", "foo"], "sdks": ["php-laravel"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] @@ -1319,10 +1179,6 @@ }, "alias": ["db.query.text"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [199] @@ -1351,10 +1207,6 @@ }, "alias": ["db.system.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [199, 224] @@ -1382,10 +1234,6 @@ "reason": "Deprecated from OTEL, use gen_ai.input.messages with the new format instead." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [74, 108, 119] @@ -1410,10 +1258,6 @@ "replacement": "gen_ai.tool.definitions" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] @@ -1439,10 +1283,6 @@ "replacement": "gen_ai.input.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] @@ -1468,10 +1308,6 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] @@ -1497,10 +1333,6 @@ "replacement": "gen_ai.output.messages" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] @@ -1526,10 +1358,6 @@ }, "alias": ["ai.model.provider", "gen_ai.provider.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [253] @@ -1554,10 +1382,6 @@ "replacement": "gen_ai.system_instructions" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [221] @@ -1585,7 +1409,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.1.0", @@ -1610,7 +1434,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.1.0", @@ -1635,7 +1459,7 @@ "changelog": [ { "version": "next", - "prs": [265, 270] + "prs": [265] }, { "version": "0.1.0", @@ -1658,10 +1482,6 @@ }, "alias": ["ai.completion_tokens.used", "gen_ai.usage.output_tokens"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1690,10 +1510,6 @@ }, "alias": ["ai.prompt_tokens.used", "gen_ai.usage.input_tokens"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1722,10 +1538,6 @@ }, "alias": ["client.address"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 106, 127] @@ -1750,10 +1562,6 @@ }, "alias": ["network.protocol.version", "net.protocol.version"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1779,10 +1587,6 @@ }, "alias": ["server.address", "client.address", "http.server_name", "net.host.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1807,10 +1611,6 @@ }, "alias": ["http.request.method"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -1835,10 +1635,6 @@ }, "alias": ["http.response.body.size", "http.response.header.content-length"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1867,10 +1663,6 @@ }, "alias": ["http.response.size"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1899,10 +1691,6 @@ }, "alias": ["url.scheme"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -1927,10 +1715,6 @@ }, "alias": ["server.address", "net.host.name", "http.host"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -1955,10 +1739,6 @@ }, "alias": ["http.response.status_code"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -1987,10 +1767,6 @@ "reason": "This attribute is being deprecated in favor of url.path and url.query" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61] @@ -2015,10 +1791,6 @@ }, "alias": ["url.full", "url"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108] @@ -2043,10 +1815,6 @@ }, "alias": ["user_agent.original"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -2071,10 +1839,6 @@ }, "alias": ["network.local.address", "net.sock.host.addr"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2099,10 +1863,6 @@ }, "alias": ["server.address", "http.server_name", "http.host"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2127,10 +1887,6 @@ }, "alias": ["server.port"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -2159,10 +1915,6 @@ }, "alias": ["network.peer.address", "net.sock.peer.addr"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2187,10 +1939,6 @@ "reason": "Deprecated, use server.address on client spans and client.address on server spans." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -2215,10 +1963,6 @@ "reason": "Deprecated, use server.port on client spans and client.port on server spans." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -2247,10 +1991,6 @@ }, "alias": ["network.protocol.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -2275,10 +2015,6 @@ }, "alias": ["network.protocol.version", "http.flavor"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2303,10 +2039,6 @@ "reason": "Deprecated, use network.transport and network.type." }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -2331,10 +2063,6 @@ }, "alias": ["network.local.address", "net.host.ip"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2359,10 +2087,6 @@ }, "alias": ["network.local.port"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -2391,10 +2115,6 @@ }, "alias": ["network.peer.address", "net.peer.ip"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 108, 127] @@ -2418,10 +2138,6 @@ "reason": "Deprecated from OTEL, no replacement at this time" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 119, 127] @@ -2445,10 +2161,6 @@ "replacement": "network.peer.port" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.4.0", "prs": [228] @@ -2477,10 +2189,6 @@ }, "alias": ["network.transport"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [61, 127] @@ -2506,10 +2214,6 @@ }, "example": "query.id='123'", "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [103] @@ -2532,7 +2236,7 @@ "changelog": [ { "version": "next", - "prs": [266, 270] + "prs": [266] } ] }, @@ -2550,10 +2254,6 @@ "replacement": "sentry.environment" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.3.1", "prs": [196] @@ -2575,10 +2275,6 @@ }, "alias": ["browser.name"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [139] @@ -2600,10 +2296,6 @@ }, "alias": ["browser.version"], "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [139] @@ -2625,10 +2317,6 @@ "replacement": "sentry.segment.id" }, "changelog": [ - { - "version": "next", - "prs": [270] - }, { "version": "0.1.0", "prs": [124] From 0310eb752cc0fba723cde9fa9a6ed39aae47ece3 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Wed, 4 Mar 2026 17:15:07 -0500 Subject: [PATCH 4/7] feat: Add sentry.timestamp.sequence attribute definition Add attribute for deterministic ordering of logs and metrics when timestamps share the same integer millisecond. Starts at 0 on SDK init, increments by 1 per captured item, resets when the millisecond changes. Co-Authored-By: Claude Opus 4.6 --- model/attributes/sentry/sentry__log__sequence.json | 10 ---------- .../attributes/sentry/sentry__timestamp__sequence.json | 10 ++++++++++ 2 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 model/attributes/sentry/sentry__log__sequence.json create mode 100644 model/attributes/sentry/sentry__timestamp__sequence.json diff --git a/model/attributes/sentry/sentry__log__sequence.json b/model/attributes/sentry/sentry__log__sequence.json deleted file mode 100644 index a49cb744..00000000 --- a/model/attributes/sentry/sentry__log__sequence.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "key": "sentry.log.sequence", - "brief": "A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", - "type": "integer", - "pii": { - "key": "false" - }, - "is_in_otel": false, - "example": 42 -} diff --git a/model/attributes/sentry/sentry__timestamp__sequence.json b/model/attributes/sentry/sentry__timestamp__sequence.json new file mode 100644 index 00000000..c86ec729 --- /dev/null +++ b/model/attributes/sentry/sentry__timestamp__sequence.json @@ -0,0 +1,10 @@ +{ + "key": "sentry.timestamp.sequence", + "brief": "A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.", + "type": "integer", + "pii": { + "key": "false" + }, + "is_in_otel": false, + "example": 0 +} From d260d8fa924c09a1691aef0db7dcb946b4fe2ebd Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Thu, 5 Mar 2026 13:43:55 -0500 Subject: [PATCH 5/7] chore: Regenerate TS/Python bindings for sentry.timestamp.sequence --- .../sentry-conventions/src/attributes.ts | 66 +++++++++---------- python/src/sentry_conventions/attributes.py | 38 ++++++----- 2 files changed, 53 insertions(+), 51 deletions(-) diff --git a/javascript/sentry-conventions/src/attributes.ts b/javascript/sentry-conventions/src/attributes.ts index 2cf83c5d..c8e9ee35 100644 --- a/javascript/sentry-conventions/src/attributes.ts +++ b/javascript/sentry-conventions/src/attributes.ts @@ -6942,26 +6942,6 @@ export const SENTRY_KIND = 'sentry.kind'; */ export type SENTRY_KIND_TYPE = string; -// Path: model/attributes/sentry/sentry__log__sequence.json - -/** - * A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. `sentry.log.sequence` - * - * Attribute Value Type: `number` {@link SENTRY_LOG_SEQUENCE_TYPE} - * - * Contains PII: false - * - * Attribute defined in OTEL: No - * - * @example 42 - */ -export const SENTRY_LOG_SEQUENCE = 'sentry.log.sequence'; - -/** - * Type for {@link SENTRY_LOG_SEQUENCE} sentry.log.sequence - */ -export type SENTRY_LOG_SEQUENCE_TYPE = number; - // Path: model/attributes/sentry/sentry__message__parameter__[key].json /** @@ -7491,6 +7471,26 @@ export const SENTRY_STATUS_MESSAGE = 'sentry.status.message'; */ export type SENTRY_STATUS_MESSAGE_TYPE = string; +// Path: model/attributes/sentry/sentry__timestamp__sequence.json + +/** + * A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one. `sentry.timestamp.sequence` + * + * Attribute Value Type: `number` {@link SENTRY_TIMESTAMP_SEQUENCE_TYPE} + * + * Contains PII: false + * + * Attribute defined in OTEL: No + * + * @example 0 + */ +export const SENTRY_TIMESTAMP_SEQUENCE = 'sentry.timestamp.sequence'; + +/** + * Type for {@link SENTRY_TIMESTAMP_SEQUENCE} sentry.timestamp.sequence + */ +export type SENTRY_TIMESTAMP_SEQUENCE_TYPE = number; + // Path: model/attributes/sentry/sentry__trace__parent_span_id.json /** @@ -9328,7 +9328,6 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_IDLE_SPAN_FINISH_REASON]: 'string', [SENTRY_IS_REMOTE]: 'boolean', [SENTRY_KIND]: 'string', - [SENTRY_LOG_SEQUENCE]: 'integer', [SENTRY_MESSAGE_PARAMETER_KEY]: 'string', [SENTRY_MESSAGE_TEMPLATE]: 'string', [SENTRY_MODULE_KEY]: 'string', @@ -9355,6 +9354,7 @@ export const ATTRIBUTE_TYPE: Record = { [SENTRY_SPAN_SOURCE]: 'string', [SENTRY_STATUS_CODE]: 'integer', [SENTRY_STATUS_MESSAGE]: 'string', + [SENTRY_TIMESTAMP_SEQUENCE]: 'integer', [SENTRY_TRACE_PARENT_SPAN_ID]: 'string', [SENTRY_TRANSACTION]: 'string', [SERVER_ADDRESS]: 'string', @@ -9760,7 +9760,6 @@ export type AttributeName = | typeof SENTRY_IDLE_SPAN_FINISH_REASON | typeof SENTRY_IS_REMOTE | typeof SENTRY_KIND - | typeof SENTRY_LOG_SEQUENCE | typeof SENTRY_MESSAGE_PARAMETER_KEY | typeof SENTRY_MESSAGE_TEMPLATE | typeof SENTRY_MODULE_KEY @@ -9787,6 +9786,7 @@ export type AttributeName = | typeof SENTRY_SPAN_SOURCE | typeof SENTRY_STATUS_CODE | typeof SENTRY_STATUS_MESSAGE + | typeof SENTRY_TIMESTAMP_SEQUENCE | typeof SENTRY_TRACE_PARENT_SPAN_ID | typeof SENTRY_TRANSACTION | typeof SERVER_ADDRESS @@ -13887,16 +13887,6 @@ export const ATTRIBUTE_METADATA: Record = { example: 'server', changelog: [{ version: '0.3.1', prs: [190] }], }, - [SENTRY_LOG_SEQUENCE]: { - brief: - 'A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.', - type: 'integer', - pii: { - isPii: 'false', - }, - isInOtel: false, - example: 42, - }, [SENTRY_MESSAGE_PARAMETER_KEY]: { brief: "A parameter used in the message template. can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0, sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id, sentry.message.parameter.user_id, etc)", @@ -14177,6 +14167,16 @@ export const ATTRIBUTE_METADATA: Record = { example: 'foobar', changelog: [{ version: '0.3.1', prs: [190] }], }, + [SENTRY_TIMESTAMP_SEQUENCE]: { + brief: + 'A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.', + type: 'integer', + pii: { + isPii: 'false', + }, + isInOtel: false, + example: 0, + }, [SENTRY_TRACE_PARENT_SPAN_ID]: { brief: 'The span id of the span that was active when the log was collected. This should not be set if there was no active span.', @@ -15265,7 +15265,6 @@ export type Attributes = { [SENTRY_IDLE_SPAN_FINISH_REASON]?: SENTRY_IDLE_SPAN_FINISH_REASON_TYPE; [SENTRY_IS_REMOTE]?: SENTRY_IS_REMOTE_TYPE; [SENTRY_KIND]?: SENTRY_KIND_TYPE; - [SENTRY_LOG_SEQUENCE]?: SENTRY_LOG_SEQUENCE_TYPE; [SENTRY_MESSAGE_PARAMETER_KEY]?: SENTRY_MESSAGE_PARAMETER_KEY_TYPE; [SENTRY_MESSAGE_TEMPLATE]?: SENTRY_MESSAGE_TEMPLATE_TYPE; [SENTRY_MODULE_KEY]?: SENTRY_MODULE_KEY_TYPE; @@ -15292,6 +15291,7 @@ export type Attributes = { [SENTRY_SPAN_SOURCE]?: SENTRY_SPAN_SOURCE_TYPE; [SENTRY_STATUS_CODE]?: SENTRY_STATUS_CODE_TYPE; [SENTRY_STATUS_MESSAGE]?: SENTRY_STATUS_MESSAGE_TYPE; + [SENTRY_TIMESTAMP_SEQUENCE]?: SENTRY_TIMESTAMP_SEQUENCE_TYPE; [SENTRY_TRACE_PARENT_SPAN_ID]?: SENTRY_TRACE_PARENT_SPAN_ID_TYPE; [SENTRY_TRANSACTION]?: SENTRY_TRANSACTION_TYPE; [SERVER_ADDRESS]?: SERVER_ADDRESS_TYPE; diff --git a/python/src/sentry_conventions/attributes.py b/python/src/sentry_conventions/attributes.py index dacd1cf0..dce6b05f 100644 --- a/python/src/sentry_conventions/attributes.py +++ b/python/src/sentry_conventions/attributes.py @@ -3912,16 +3912,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: "server" """ - # Path: model/attributes/sentry/sentry__log__sequence.json - SENTRY_LOG_SEQUENCE: Literal["sentry.log.sequence"] = "sentry.log.sequence" - """A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical. - - Type: int - Contains PII: false - Defined in OTEL: No - Example: 42 - """ - # Path: model/attributes/sentry/sentry__message__parameter__[key].json SENTRY_MESSAGE_PARAMETER_KEY: Literal["sentry.message.parameter."] = ( "sentry.message.parameter." @@ -4209,6 +4199,18 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): Example: 200 """ + # Path: model/attributes/sentry/sentry__timestamp__sequence.json + SENTRY_TIMESTAMP_SEQUENCE: Literal["sentry.timestamp.sequence"] = ( + "sentry.timestamp.sequence" + ) + """A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one. + + Type: int + Contains PII: false + Defined in OTEL: No + Example: 0 + """ + # Path: model/attributes/sentry/sentry__trace__parent_span_id.json SENTRY_TRACE_PARENT_SPAN_ID: Literal["sentry.trace.parent_span_id"] = ( "sentry.trace.parent_span_id" @@ -8849,13 +8851,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ChangelogEntry(version="0.3.1", prs=[190]), ], ), - "sentry.log.sequence": AttributeMetadata( - brief="A monotonically incrementing counter assigned to each log by the SDK, used to determine the correct ordering of logs when timestamps are identical.", - type=AttributeType.INTEGER, - pii=PiiInfo(isPii=IsPii.FALSE), - is_in_otel=False, - example=42, - ), "sentry.message.parameter.": AttributeMetadata( brief="A parameter used in the message template. can either be the number that represent the parameter's position in the template string (sentry.message.parameter.0, sentry.message.parameter.1, etc) or the parameter's name (sentry.message.parameter.item_id, sentry.message.parameter.user_id, etc)", type=AttributeType.STRING, @@ -9131,6 +9126,13 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): ChangelogEntry(version="0.4.0", prs=[223, 228]), ], ), + "sentry.timestamp.sequence": AttributeMetadata( + brief="A sequencing counter for deterministic ordering of logs or metrics when timestamps share the same integer millisecond. Starts at 0 on SDK initialization, increments by 1 for each captured item, and resets to 0 when the integer millisecond of the current item differs from the previous one.", + type=AttributeType.INTEGER, + pii=PiiInfo(isPii=IsPii.FALSE), + is_in_otel=False, + example=0, + ), "sentry.trace.parent_span_id": AttributeMetadata( brief="The span id of the span that was active when the log was collected. This should not be set if there was no active span.", type=AttributeType.STRING, @@ -10220,7 +10222,6 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.idle_span_finish_reason": str, "sentry.is_remote": bool, "sentry.kind": str, - "sentry.log.sequence": int, "sentry.message.parameter.": str, "sentry.message.template": str, "sentry.module.": str, @@ -10247,6 +10248,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): "sentry.span.source": str, "sentry.status.message": str, "sentry.status_code": int, + "sentry.timestamp.sequence": int, "sentry.trace.parent_span_id": str, "sentry.transaction": str, "server.address": str, From 5ec191f7f255e586d28b8aba76ac349caba4f251 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Thu, 5 Mar 2026 13:45:48 -0500 Subject: [PATCH 6/7] chore: Add changelog entry for sentry.timestamp.sequence (PR #262) --- model/attributes/sentry/sentry__timestamp__sequence.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/model/attributes/sentry/sentry__timestamp__sequence.json b/model/attributes/sentry/sentry__timestamp__sequence.json index c86ec729..2863458d 100644 --- a/model/attributes/sentry/sentry__timestamp__sequence.json +++ b/model/attributes/sentry/sentry__timestamp__sequence.json @@ -6,5 +6,11 @@ "key": "false" }, "is_in_otel": false, - "example": 0 + "example": 0, + "changelog": [ + { + "version": "next", + "prs": [262] + } + ] } From e919aeed4b1b72738c4f463d8c0599b383371cf0 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Thu, 5 Mar 2026 13:58:53 -0500 Subject: [PATCH 7/7] chore: Regenerate TS/Python bindings --- javascript/sentry-conventions/src/attributes.ts | 1 + python/src/sentry_conventions/attributes.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/javascript/sentry-conventions/src/attributes.ts b/javascript/sentry-conventions/src/attributes.ts index c8e9ee35..e4e72f9b 100644 --- a/javascript/sentry-conventions/src/attributes.ts +++ b/javascript/sentry-conventions/src/attributes.ts @@ -14176,6 +14176,7 @@ export const ATTRIBUTE_METADATA: Record = { }, isInOtel: false, example: 0, + changelog: [{ version: 'next', prs: [262] }], }, [SENTRY_TRACE_PARENT_SPAN_ID]: { brief: diff --git a/python/src/sentry_conventions/attributes.py b/python/src/sentry_conventions/attributes.py index dce6b05f..0f2c980e 100644 --- a/python/src/sentry_conventions/attributes.py +++ b/python/src/sentry_conventions/attributes.py @@ -9132,6 +9132,9 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta): pii=PiiInfo(isPii=IsPii.FALSE), is_in_otel=False, example=0, + changelog=[ + ChangelogEntry(version="next", prs=[262]), + ], ), "sentry.trace.parent_span_id": AttributeMetadata( brief="The span id of the span that was active when the log was collected. This should not be set if there was no active span.",