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
Changelog
v0.0.0
Raw JSON
{
  "key": "user.email",
  "brief": "User email address.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "test@example.com",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.full_name

string PII: True OTel: True

User's full name.

Example John Smith
Changelog
v0.0.0
Raw JSON
{
  "key": "user.full_name",
  "brief": "User's full name.",
  "type": "string",
  "pii": {
    "key": "true"
  },
  "is_in_otel": true,
  "example": "John Smith",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.geo.city

string PII: Maybe OTel: False

Human readable city name.

Example Toronto
Changelog
v0.0.0
Raw JSON
{
  "key": "user.geo.city",
  "brief": "Human readable city name.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "Toronto",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.geo.country_code

string PII: Maybe OTel: False

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

Example CA
Changelog
v0.0.0
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",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.geo.region

string PII: Maybe OTel: False

Human readable region name or code.

Example Canada
Changelog
v0.0.0
Raw JSON
{
  "key": "user.geo.region",
  "brief": "Human readable region name or code.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "Canada",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.geo.subdivision

string PII: Maybe OTel: False

Human readable subdivision name.

Example Ontario
Changelog
v0.0.0
Raw JSON
{
  "key": "user.geo.subdivision",
  "brief": "Human readable subdivision name.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": false,
  "example": "Ontario",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.hash

string PII: True OTel: True

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

Example 8ae4c2993e0f4f3b8b2d1b1f3b5e8f4d
Changelog
v0.0.0
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",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.id

string PII: True OTel: True

Unique identifier of the user.

Example S-1-5-21-202424912787-2692429404-2351956786-1000
Changelog
v0.0.0
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",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.ip_address

string PII: True OTel: False

The IP address of the user.

Example 192.168.1.1
Changelog
v0.1.0 #75
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",
  "changelog": [
    {
      "version": "0.1.0",
      "prs": [
        75
      ]
    }
  ]
}

user.name

string PII: True OTel: True

Short name or login/username of the user.

Example j.smith
Changelog
v0.0.0
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",
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}

user.roles

string[] PII: True OTel: True

Array of user roles at the time of the event.

Example ["admin","editor"]
Changelog
v0.0.0
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"
  ],
  "changelog": [
    {
      "version": "0.0.0"
    }
  ]
}