Skip to content

Commit 18ea0e6

Browse files
committed
set pii maybe for numeric value attributes
1 parent cc4bd19 commit 18ea0e6

File tree

11 files changed

+39
-39
lines changed

11 files changed

+39
-39
lines changed

generated/attributes/browser.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The value of the recorded Cumulative Layout Shift (CLS) web vital
9090
| Property | Value |
9191
| --- | --- |
9292
| Type | `double` |
93-
| Has PII | false |
93+
| Has PII | maybe |
9494
| Exists in OpenTelemetry | No |
9595
| Example | `0.2361` |
9696
| Aliases | `cls` |
@@ -102,7 +102,7 @@ The value of the recorded Interaction to Next Paint (INP) web vital
102102
| Property | Value |
103103
| --- | --- |
104104
| Type | `double` |
105-
| Has PII | false |
105+
| Has PII | maybe |
106106
| Exists in OpenTelemetry | No |
107107
| Example | `200` |
108108
| Aliases | `inp` |
@@ -114,7 +114,7 @@ The value of the recorded Largest Contentful Paint (LCP) web vital
114114
| Property | Value |
115115
| --- | --- |
116116
| Type | `double` |
117-
| Has PII | false |
117+
| Has PII | maybe |
118118
| Exists in OpenTelemetry | No |
119119
| Example | `2500` |
120120
| Aliases | `lcp` |

generated/attributes/general.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The value of the recorded Cumulative Layout Shift (CLS) web vital
102102
| Property | Value |
103103
| --- | --- |
104104
| Type | `double` |
105-
| Has PII | false |
105+
| Has PII | maybe |
106106
| Exists in OpenTelemetry | No |
107107
| Example | `0.2361` |
108108
| Deprecated | Yes, use `browser.web_vital.cls.value` instead |
@@ -142,7 +142,7 @@ The value of the recorded Interaction to Next Paint (INP) web vital
142142
| Property | Value |
143143
| --- | --- |
144144
| Type | `double` |
145-
| Has PII | false |
145+
| Has PII | maybe |
146146
| Exists in OpenTelemetry | No |
147147
| Example | `200` |
148148
| Deprecated | Yes, use `browser.web_vital.inp.value` instead |
@@ -156,7 +156,7 @@ The value of the recorded Largest Contentful Paint (LCP) web vital
156156
| Property | Value |
157157
| --- | --- |
158158
| Type | `double` |
159-
| Has PII | false |
159+
| Has PII | maybe |
160160
| Exists in OpenTelemetry | No |
161161
| Example | `2500` |
162162
| Deprecated | Yes, use `browser.web_vital.lcp.value` instead |

javascript/sentry-conventions/src/attributes.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ export type BROWSER_VERSION_TYPE = string;
885885
*
886886
* Attribute Value Type: `number` {@link BROWSER_WEB_VITAL_CLS_VALUE_TYPE}
887887
*
888-
* Contains PII: false
888+
* Contains PII: maybe
889889
*
890890
* Attribute defined in OTEL: No
891891
*
@@ -907,7 +907,7 @@ export type BROWSER_WEB_VITAL_CLS_VALUE_TYPE = number;
907907
*
908908
* Attribute Value Type: `number` {@link BROWSER_WEB_VITAL_INP_VALUE_TYPE}
909909
*
910-
* Contains PII: false
910+
* Contains PII: maybe
911911
*
912912
* Attribute defined in OTEL: No
913913
*
@@ -929,7 +929,7 @@ export type BROWSER_WEB_VITAL_INP_VALUE_TYPE = number;
929929
*
930930
* Attribute Value Type: `number` {@link BROWSER_WEB_VITAL_LCP_VALUE_TYPE}
931931
*
932-
* Contains PII: false
932+
* Contains PII: maybe
933933
*
934934
* Attribute defined in OTEL: No
935935
*
@@ -1173,7 +1173,7 @@ export type CLOUDFLARE_D1_ROWS_WRITTEN_TYPE = number;
11731173
*
11741174
* Attribute Value Type: `number` {@link CLS_TYPE}
11751175
*
1176-
* Contains PII: false
1176+
* Contains PII: maybe
11771177
*
11781178
* Attribute defined in OTEL: No
11791179
*
@@ -4017,7 +4017,7 @@ export type ID_TYPE = string;
40174017
*
40184018
* Attribute Value Type: `number` {@link INP_TYPE}
40194019
*
4020-
* Contains PII: false
4020+
* Contains PII: maybe
40214021
*
40224022
* Attribute defined in OTEL: No
40234023
*
@@ -4160,7 +4160,7 @@ export type JVM_THREAD_STATE_TYPE = string;
41604160
*
41614161
* Attribute Value Type: `number` {@link LCP_TYPE}
41624162
*
4163-
* Contains PII: false
4163+
* Contains PII: maybe
41644164
*
41654165
* Attribute defined in OTEL: No
41664166
*
@@ -10273,7 +10273,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1027310273
brief: 'The value of the recorded Cumulative Layout Shift (CLS) web vital',
1027410274
type: 'double',
1027510275
pii: {
10276-
isPii: 'false',
10276+
isPii: 'maybe',
1027710277
},
1027810278
isInOtel: false,
1027910279
example: 0.2361,
@@ -10284,7 +10284,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1028410284
brief: 'The value of the recorded Interaction to Next Paint (INP) web vital',
1028510285
type: 'double',
1028610286
pii: {
10287-
isPii: 'false',
10287+
isPii: 'maybe',
1028810288
},
1028910289
isInOtel: false,
1029010290
example: 200,
@@ -10295,7 +10295,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1029510295
brief: 'The value of the recorded Largest Contentful Paint (LCP) web vital',
1029610296
type: 'double',
1029710297
pii: {
10298-
isPii: 'false',
10298+
isPii: 'maybe',
1029910299
},
1030010300
isInOtel: false,
1030110301
example: 2500,
@@ -10415,7 +10415,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1041510415
brief: 'The value of the recorded Cumulative Layout Shift (CLS) web vital',
1041610416
type: 'double',
1041710417
pii: {
10418-
isPii: 'false',
10418+
isPii: 'maybe',
1041910419
},
1042010420
isInOtel: false,
1042110421
example: 0.2361,
@@ -11861,7 +11861,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1186111861
brief: 'The value of the recorded Interaction to Next Paint (INP) web vital',
1186211862
type: 'double',
1186311863
pii: {
11864-
isPii: 'false',
11864+
isPii: 'maybe',
1186511865
},
1186611866
isInOtel: false,
1186711867
example: 200,
@@ -11930,7 +11930,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1193011930
brief: 'The value of the recorded Largest Contentful Paint (LCP) web vital',
1193111931
type: 'double',
1193211932
pii: {
11933-
isPii: 'false',
11933+
isPii: 'maybe',
1193411934
},
1193511935
isInOtel: false,
1193611936
example: 2500,

model/attributes/browser/browser__web_vital__cls__value.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The value of the recorded Cumulative Layout Shift (CLS) web vital",
44
"type": "double",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 0.2361,

model/attributes/browser/browser__web_vital__inp__value.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The value of the recorded Interaction to Next Paint (INP) web vital",
44
"type": "double",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 200.0,

model/attributes/browser/browser__web_vital__lcp__value.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The value of the recorded Largest Contentful Paint (LCP) web vital",
44
"type": "double",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 2500.0,

model/attributes/cls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The value of the recorded Cumulative Layout Shift (CLS) web vital",
44
"type": "double",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 0.2361,

model/attributes/inp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The value of the recorded Interaction to Next Paint (INP) web vital",
44
"type": "double",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 200.0,

model/attributes/lcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The value of the recorded Largest Contentful Paint (LCP) web vital",
44
"type": "double",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 2500.0,

python/src/sentry_conventions/attributes.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
645645
"""The value of the recorded Cumulative Layout Shift (CLS) web vital
646646
647647
Type: float
648-
Contains PII: false
648+
Contains PII: maybe
649649
Defined in OTEL: No
650650
Aliases: cls
651651
Example: 0.2361
@@ -658,7 +658,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
658658
"""The value of the recorded Interaction to Next Paint (INP) web vital
659659
660660
Type: float
661-
Contains PII: false
661+
Contains PII: maybe
662662
Defined in OTEL: No
663663
Aliases: inp
664664
Example: 200
@@ -671,7 +671,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
671671
"""The value of the recorded Largest Contentful Paint (LCP) web vital
672672
673673
Type: float
674-
Contains PII: false
674+
Contains PII: maybe
675675
Defined in OTEL: No
676676
Aliases: lcp
677677
Example: 2500
@@ -797,7 +797,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
797797
"""The value of the recorded Cumulative Layout Shift (CLS) web vital
798798
799799
Type: float
800-
Contains PII: false
800+
Contains PII: maybe
801801
Defined in OTEL: No
802802
Aliases: browser.web_vital.cls.value
803803
DEPRECATED: Use browser.web_vital.cls.value instead - The CLS web vital is now recorded as a browser.web_vital.cls.value attribute.
@@ -2337,7 +2337,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
23372337
"""The value of the recorded Interaction to Next Paint (INP) web vital
23382338
23392339
Type: float
2340-
Contains PII: false
2340+
Contains PII: maybe
23412341
Defined in OTEL: No
23422342
Aliases: browser.web_vital.inp.value
23432343
DEPRECATED: Use browser.web_vital.inp.value instead - The INP web vital is now recorded as a browser.web_vital.inp.value attribute.
@@ -2449,7 +2449,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
24492449
"""The value of the recorded Largest Contentful Paint (LCP) web vital
24502450
24512451
Type: float
2452-
Contains PII: false
2452+
Contains PII: maybe
24532453
Defined in OTEL: No
24542454
Aliases: browser.web_vital.lcp.value
24552455
DEPRECATED: Use browser.web_vital.lcp.value instead - The LCP web vital is now recorded as a browser.web_vital.lcp.value attribute.
@@ -5236,7 +5236,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
52365236
"browser.web_vital.cls.value": AttributeMetadata(
52375237
brief="The value of the recorded Cumulative Layout Shift (CLS) web vital",
52385238
type=AttributeType.DOUBLE,
5239-
pii=PiiInfo(isPii=IsPii.FALSE),
5239+
pii=PiiInfo(isPii=IsPii.MAYBE),
52405240
is_in_otel=False,
52415241
example=0.2361,
52425242
aliases=["cls"],
@@ -5245,7 +5245,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
52455245
"browser.web_vital.inp.value": AttributeMetadata(
52465246
brief="The value of the recorded Interaction to Next Paint (INP) web vital",
52475247
type=AttributeType.DOUBLE,
5248-
pii=PiiInfo(isPii=IsPii.FALSE),
5248+
pii=PiiInfo(isPii=IsPii.MAYBE),
52495249
is_in_otel=False,
52505250
example=200,
52515251
aliases=["inp"],
@@ -5254,7 +5254,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
52545254
"browser.web_vital.lcp.value": AttributeMetadata(
52555255
brief="The value of the recorded Largest Contentful Paint (LCP) web vital",
52565256
type=AttributeType.DOUBLE,
5257-
pii=PiiInfo(isPii=IsPii.FALSE),
5257+
pii=PiiInfo(isPii=IsPii.MAYBE),
52585258
is_in_otel=False,
52595259
example=2500,
52605260
aliases=["lcp"],
@@ -5349,7 +5349,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
53495349
"cls": AttributeMetadata(
53505350
brief="The value of the recorded Cumulative Layout Shift (CLS) web vital",
53515351
type=AttributeType.DOUBLE,
5352-
pii=PiiInfo(isPii=IsPii.FALSE),
5352+
pii=PiiInfo(isPii=IsPii.MAYBE),
53535353
is_in_otel=False,
53545354
example=0.2361,
53555355
deprecation=DeprecationInfo(
@@ -6441,7 +6441,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
64416441
"inp": AttributeMetadata(
64426442
brief="The value of the recorded Interaction to Next Paint (INP) web vital",
64436443
type=AttributeType.DOUBLE,
6444-
pii=PiiInfo(isPii=IsPii.FALSE),
6444+
pii=PiiInfo(isPii=IsPii.MAYBE),
64456445
is_in_otel=False,
64466446
example=200,
64476447
deprecation=DeprecationInfo(
@@ -6525,7 +6525,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
65256525
"lcp": AttributeMetadata(
65266526
brief="The value of the recorded Largest Contentful Paint (LCP) web vital",
65276527
type=AttributeType.DOUBLE,
6528-
pii=PiiInfo(isPii=IsPii.FALSE),
6528+
pii=PiiInfo(isPii=IsPii.MAYBE),
65296529
is_in_otel=False,
65306530
example=2500,
65316531
deprecation=DeprecationInfo(

0 commit comments

Comments
 (0)