Skip to content

Commit f1b1b42

Browse files
committed
fix: define PII as maybe
1 parent f37dfa0 commit f1b1b42

8 files changed

Lines changed: 30 additions & 30 deletions

File tree

generated/attributes/culture.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The calendar system used by the culture.
1818
| Property | Value |
1919
| --- | --- |
2020
| Type | `string` |
21-
| Has PII | false |
21+
| Has PII | maybe |
2222
| Exists in OpenTelemetry | No |
2323
| Example | `GregorianCalendar` |
2424

@@ -29,7 +29,7 @@ Human readable name of the culture.
2929
| Property | Value |
3030
| --- | --- |
3131
| Type | `string` |
32-
| Has PII | false |
32+
| Has PII | maybe |
3333
| Exists in OpenTelemetry | No |
3434
| Example | `English (United States)` |
3535

@@ -40,7 +40,7 @@ Whether the culture uses 24-hour time format.
4040
| Property | Value |
4141
| --- | --- |
4242
| Type | `boolean` |
43-
| Has PII | false |
43+
| Has PII | maybe |
4444
| Exists in OpenTelemetry | No |
4545
| Example | `true` |
4646

@@ -51,7 +51,7 @@ The locale identifier following RFC 4646.
5151
| Property | Value |
5252
| --- | --- |
5353
| Type | `string` |
54-
| Has PII | false |
54+
| Has PII | maybe |
5555
| Exists in OpenTelemetry | No |
5656
| Example | `en-US` |
5757

@@ -62,7 +62,7 @@ The timezone of the culture, as a geographic timezone identifier.
6262
| Property | Value |
6363
| --- | --- |
6464
| Type | `string` |
65-
| Has PII | false |
65+
| Has PII | maybe |
6666
| Exists in OpenTelemetry | No |
6767
| Example | `Europe/Vienna` |
6868

javascript/sentry-conventions/src/attributes.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ export type CODE_NAMESPACE_TYPE = string;
12631263
*
12641264
* Attribute Value Type: `string` {@link CULTURE_CALENDAR_TYPE}
12651265
*
1266-
* Contains PII: false
1266+
* Contains PII: maybe
12671267
*
12681268
* Attribute defined in OTEL: No
12691269
*
@@ -1283,7 +1283,7 @@ export type CULTURE_CALENDAR_TYPE = string;
12831283
*
12841284
* Attribute Value Type: `string` {@link CULTURE_DISPLAY_NAME_TYPE}
12851285
*
1286-
* Contains PII: false
1286+
* Contains PII: maybe
12871287
*
12881288
* Attribute defined in OTEL: No
12891289
*
@@ -1303,7 +1303,7 @@ export type CULTURE_DISPLAY_NAME_TYPE = string;
13031303
*
13041304
* Attribute Value Type: `boolean` {@link CULTURE_IS_24_HOUR_FORMAT_TYPE}
13051305
*
1306-
* Contains PII: false
1306+
* Contains PII: maybe
13071307
*
13081308
* Attribute defined in OTEL: No
13091309
*
@@ -1323,7 +1323,7 @@ export type CULTURE_IS_24_HOUR_FORMAT_TYPE = boolean;
13231323
*
13241324
* Attribute Value Type: `string` {@link CULTURE_LOCALE_TYPE}
13251325
*
1326-
* Contains PII: false
1326+
* Contains PII: maybe
13271327
*
13281328
* Attribute defined in OTEL: No
13291329
*
@@ -1343,7 +1343,7 @@ export type CULTURE_LOCALE_TYPE = string;
13431343
*
13441344
* Attribute Value Type: `string` {@link CULTURE_TIMEZONE_TYPE}
13451345
*
1346-
* Contains PII: false
1346+
* Contains PII: maybe
13471347
*
13481348
* Attribute defined in OTEL: No
13491349
*
@@ -10476,7 +10476,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1047610476
brief: 'The calendar system used by the culture.',
1047710477
type: 'string',
1047810478
pii: {
10479-
isPii: 'false',
10479+
isPii: 'maybe',
1048010480
},
1048110481
isInOtel: false,
1048210482
example: 'GregorianCalendar',
@@ -10485,7 +10485,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1048510485
brief: 'Human readable name of the culture.',
1048610486
type: 'string',
1048710487
pii: {
10488-
isPii: 'false',
10488+
isPii: 'maybe',
1048910489
},
1049010490
isInOtel: false,
1049110491
example: 'English (United States)',
@@ -10494,7 +10494,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1049410494
brief: 'Whether the culture uses 24-hour time format.',
1049510495
type: 'boolean',
1049610496
pii: {
10497-
isPii: 'false',
10497+
isPii: 'maybe',
1049810498
},
1049910499
isInOtel: false,
1050010500
example: true,
@@ -10503,7 +10503,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1050310503
brief: 'The locale identifier following RFC 4646.',
1050410504
type: 'string',
1050510505
pii: {
10506-
isPii: 'false',
10506+
isPii: 'maybe',
1050710507
},
1050810508
isInOtel: false,
1050910509
example: 'en-US',
@@ -10512,7 +10512,7 @@ export const ATTRIBUTE_METADATA: Record<AttributeName, AttributeMetadata> = {
1051210512
brief: 'The timezone of the culture, as a geographic timezone identifier.',
1051310513
type: 'string',
1051410514
pii: {
10515-
isPii: 'false',
10515+
isPii: 'maybe',
1051610516
},
1051710517
isInOtel: false,
1051810518
example: 'Europe/Vienna',

model/attributes/culture/culture__calendar.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The calendar system used by the culture.",
44
"type": "string",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": "GregorianCalendar"

model/attributes/culture/culture__display_name.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "Human readable name of the culture.",
44
"type": "string",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": "English (United States)"

model/attributes/culture/culture__is_24_hour_format.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "Whether the culture uses 24-hour time format.",
44
"type": "boolean",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": true

model/attributes/culture/culture__locale.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The locale identifier following RFC 4646.",
44
"type": "string",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": "en-US"

model/attributes/culture/culture__timezone.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "The timezone of the culture, as a geographic timezone identifier.",
44
"type": "string",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": "Europe/Vienna"

python/src/sentry_conventions/attributes.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
835835
"""The calendar system used by the culture.
836836
837837
Type: str
838-
Contains PII: false
838+
Contains PII: maybe
839839
Defined in OTEL: No
840840
Example: "GregorianCalendar"
841841
"""
@@ -845,7 +845,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
845845
"""Human readable name of the culture.
846846
847847
Type: str
848-
Contains PII: false
848+
Contains PII: maybe
849849
Defined in OTEL: No
850850
Example: "English (United States)"
851851
"""
@@ -857,7 +857,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
857857
"""Whether the culture uses 24-hour time format.
858858
859859
Type: bool
860-
Contains PII: false
860+
Contains PII: maybe
861861
Defined in OTEL: No
862862
Example: true
863863
"""
@@ -867,7 +867,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
867867
"""The locale identifier following RFC 4646.
868868
869869
Type: str
870-
Contains PII: false
870+
Contains PII: maybe
871871
Defined in OTEL: No
872872
Example: "en-US"
873873
"""
@@ -877,7 +877,7 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
877877
"""The timezone of the culture, as a geographic timezone identifier.
878878
879879
Type: str
880-
Contains PII: false
880+
Contains PII: maybe
881881
Defined in OTEL: No
882882
Example: "Europe/Vienna"
883883
"""
@@ -5380,35 +5380,35 @@ class ATTRIBUTE_NAMES(metaclass=_AttributeNamesMeta):
53805380
"culture.calendar": AttributeMetadata(
53815381
brief="The calendar system used by the culture.",
53825382
type=AttributeType.STRING,
5383-
pii=PiiInfo(isPii=IsPii.FALSE),
5383+
pii=PiiInfo(isPii=IsPii.MAYBE),
53845384
is_in_otel=False,
53855385
example="GregorianCalendar",
53865386
),
53875387
"culture.display_name": AttributeMetadata(
53885388
brief="Human readable name of the culture.",
53895389
type=AttributeType.STRING,
5390-
pii=PiiInfo(isPii=IsPii.FALSE),
5390+
pii=PiiInfo(isPii=IsPii.MAYBE),
53915391
is_in_otel=False,
53925392
example="English (United States)",
53935393
),
53945394
"culture.is_24_hour_format": AttributeMetadata(
53955395
brief="Whether the culture uses 24-hour time format.",
53965396
type=AttributeType.BOOLEAN,
5397-
pii=PiiInfo(isPii=IsPii.FALSE),
5397+
pii=PiiInfo(isPii=IsPii.MAYBE),
53985398
is_in_otel=False,
53995399
example=True,
54005400
),
54015401
"culture.locale": AttributeMetadata(
54025402
brief="The locale identifier following RFC 4646.",
54035403
type=AttributeType.STRING,
5404-
pii=PiiInfo(isPii=IsPii.FALSE),
5404+
pii=PiiInfo(isPii=IsPii.MAYBE),
54055405
is_in_otel=False,
54065406
example="en-US",
54075407
),
54085408
"culture.timezone": AttributeMetadata(
54095409
brief="The timezone of the culture, as a geographic timezone identifier.",
54105410
type=AttributeType.STRING,
5411-
pii=PiiInfo(isPii=IsPii.FALSE),
5411+
pii=PiiInfo(isPii=IsPii.MAYBE),
54125412
is_in_otel=False,
54135413
example="Europe/Vienna",
54145414
),

0 commit comments

Comments
 (0)