Process Attributes

5 attributes in this category. 5 stable

Stable Attributes

process.executable.name

string PII: Maybe OTel: True

The name of the executable that started the process.

Example getsentry
Raw JSON
{
  "key": "process.executable.name",
  "brief": "The name of the executable that started the process.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "getsentry"
}

process.pid

integer PII: Maybe OTel: True

The process ID of the running process.

Example 12345
Raw JSON
{
  "key": "process.pid",
  "brief": "The process ID of the running process.",
  "type": "integer",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": 12345
}

process.runtime.description

string PII: Maybe OTel: True

An additional description about the runtime of the process, for example a specific vendor customization of the runtime environment. Equivalent to `raw_description` in the Sentry runtime context.

Example Eclipse OpenJ9 VM openj9-0.21.0
Raw JSON
{
  "key": "process.runtime.description",
  "brief": "An additional description about the runtime of the process, for example a specific vendor customization of the runtime environment. Equivalent to `raw_description` in the Sentry runtime context.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "Eclipse OpenJ9 VM openj9-0.21.0"
}

process.runtime.name

string PII: Maybe OTel: True

The name of the runtime. Equivalent to `name` in the Sentry runtime context.

Example node
Raw JSON
{
  "key": "process.runtime.name",
  "brief": "The name of the runtime. Equivalent to `name` in the Sentry runtime context.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "node"
}

process.runtime.version

string PII: Maybe OTel: True

The version of the runtime of this process, as returned by the runtime without modification. Equivalent to `version` in the Sentry runtime context.

Example 18.04.2
Raw JSON
{
  "key": "process.runtime.version",
  "brief": "The version of the runtime of this process, as returned by the runtime without modification. Equivalent to `version` in the Sentry runtime context.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "18.04.2"
}