User Attributes

11 attributes in this category. 11 stable

Stable Attributes

user.email

string PII: True OTel: True

User email address.

Example test@example.com
Raw JSON
{
  "key": "user.email",
  "brief": "User email address.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "test@example.com"
}

user.full_name

string PII: True OTel: True

User's full name.

Example John Smith
Raw JSON
{
  "key": "user.full_name",
  "brief": "User's full name.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "John Smith"
}

user.geo.city

string PII: Maybe OTel: False

Human readable city name.

Example Toronto
Raw JSON
{
  "key": "user.geo.city",
  "brief": "Human readable city name.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "Toronto"
}

user.geo.country_code

string PII: Maybe OTel: False

Two-letter country code (ISO 3166-1 alpha-2).

Example CA
Raw JSON
{
  "key": "user.geo.country_code",
  "brief": "Two-letter country code (ISO 3166-1 alpha-2).",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "CA"
}

user.geo.region

string PII: Maybe OTel: False

Human readable region name or code.

Example Canada
Raw JSON
{
  "key": "user.geo.region",
  "brief": "Human readable region name or code.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "Canada"
}

user.geo.subdivision

string PII: Maybe OTel: False

Human readable subdivision name.

Example Ontario
Raw JSON
{
  "key": "user.geo.subdivision",
  "brief": "Human readable subdivision name.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "Ontario"
}

user.hash

string PII: True OTel: True

Unique user hash to correlate information for a user in anonymized form.

Example 8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d
Raw JSON
{
  "key": "user.hash",
  "brief": "Unique user hash to correlate information for a user in anonymized form.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d"
}

user.id

string PII: True OTel: True

Unique identifier of the user.

Example S-1-5-21-202424912787-2692429404-2351956786-1000
Raw JSON
{
  "key": "user.id",
  "brief": "Unique identifier of the user.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "S-1-5-21-202424912787-2692429404-2351956786-1000"
}

user.ip_address

string PII: True OTel: False

The IP address of the user.

Example 192.168.1.1
Raw JSON
{
  "key": "user.ip_address",
  "brief": "The IP address of the user.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": false,
  "example": "192.168.1.1"
}

user.name

string PII: True OTel: True

Short name or login/username of the user.

Example j.smith
Raw JSON
{
  "key": "user.name",
  "brief": "Short name or login/username of the user.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "j.smith"
}

user.roles

string[] PII: True OTel: True

Array of user roles at the time of the event.

Example ["admin","editor"]
Raw JSON
{
  "key": "user.roles",
  "brief": "Array of user roles at the time of the event.",
  "type": "string[]",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": [
    "admin",
    "editor"
  ]
}