Skip to content

Commit c1b8f21

Browse files
committed
fix some attribute mishaps
1 parent 8e3cc5c commit c1b8f21

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

packages/core/src/semanticAttributes.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,7 @@ export const SEMANTIC_ATTRIBUTE_SENTRY_RELEASE = 'sentry.release';
8686
/** The environment name (e.g., "production", "staging", "development") */
8787
export const SEMANTIC_ATTRIBUTE_SENTRY_ENVIRONMENT = 'sentry.environment';
8888
/** The segment name (e.g., "GET /users") */
89-
export const SEMANTIC_ATTRIBUTE_SENTRY_SEGMENT_NAME = 'sentry.segment_name';
90-
/** The operating system name (e.g., "Linux", "Windows", "macOS") */
91-
export const SEMANTIC_ATTRIBUTE_OS_NAME = 'os.name';
92-
/** The browser name (e.g., "Chrome", "Firefox", "Safari") */
93-
export const SEMANTIC_ATTRIBUTE_BROWSER_VERSION = 'browser.name';
89+
export const SEMANTIC_ATTRIBUTE_SENTRY_SEGMENT_NAME = 'sentry.segment.name';
9490
/** The user ID (gated by sendDefaultPii) */
9591
export const SEMANTIC_ATTRIBUTE_USER_ID = 'user.id';
9692
/** The user email (gated by sendDefaultPii) */
@@ -99,10 +95,6 @@ export const SEMANTIC_ATTRIBUTE_USER_EMAIL = 'user.email';
9995
export const SEMANTIC_ATTRIBUTE_USER_IP_ADDRESS = 'user.ip_address';
10096
/** The user username (gated by sendDefaultPii) */
10197
export const SEMANTIC_ATTRIBUTE_USER_USERNAME = 'user.username';
102-
/** The thread ID */
103-
export const SEMANTIC_ATTRIBUTE_THREAD_ID = 'thread.id';
104-
/** The thread name */
105-
export const SEMANTIC_ATTRIBUTE_THREAD_NAME = 'thread.name';
10698
/** The name of the Sentry SDK (e.g., "sentry.php", "sentry.javascript") */
10799
export const SEMANTIC_ATTRIBUTE_SENTRY_SDK_NAME = 'sentry.sdk.name';
108100
/** The version of the Sentry SDK */

0 commit comments

Comments
 (0)