We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac3064a commit 2412b50Copy full SHA for 2412b50
1 file changed
develop-docs/sdk/telemetry/logs.mdx
@@ -326,9 +326,11 @@ SDKs may optionally attach user information as attributes (guarded by `sendDefau
326
327
```json
328
{
329
- "user.id": "123",
330
- "user.name": "john.doe",
331
- "user.email": "john.doe@example.com"
+ "attributes": {
+ "user.id": { "value": "123", "type": "string" }
+ "user.name": { "value": "john.doe", "type": "string" }
332
+ "user.email": { "value": "john.doe@example.com", "type": "string" }
333
+ }
334
}
335
```
336
0 commit comments