Skip to content

Commit 9b7d4cd

Browse files
committed
Fix PII marking for device memory attributes to be consistent
Changed pii from 'false' to 'maybe' for device.memory_size and device.free_memory attributes to be consistent with the existing device.memory.estimated_capacity attribute and other device metrics like device.cpu.logical_core_count and device.processor_count. Memory values in bytes can contribute to device fingerprinting and scrubbing them wouldn't break product features, so per CONTRIBUTING.md they should be marked as pii: maybe.
1 parent 30b6772 commit 9b7d4cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

model/attributes/device/device__free_memory.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "Free system memory in bytes.",
44
"type": "integer",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 2147483648,

model/attributes/device/device__memory_size.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"brief": "Total system memory available in bytes.",
44
"type": "integer",
55
"pii": {
6-
"key": "false"
6+
"key": "maybe"
77
},
88
"is_in_otel": false,
99
"example": 17179869184,

0 commit comments

Comments
 (0)