Faas Attributes

4 attributes in this category. 4 stable

Stable Attributes

faas.coldstart

boolean PII: False OTel: True

A boolean that is true if the serverless function is executed for the first time (aka cold-start).

Example true
Raw JSON
{
  "key": "faas.coldstart",
  "brief": "A boolean that is true if the serverless function is executed for the first time (aka cold-start).",
  "type": "boolean",
  "pii": {
    "key": "false"
  },
  "is_in_otel": true,
  "example": true
}

faas.cron

string PII: Maybe OTel: True

A string containing the schedule period as Cron Expression.

Example 0/5 * * * ? *
Raw JSON
{
  "key": "faas.cron",
  "brief": "A string containing the schedule period as Cron Expression.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "0/5 * * * ? *"
}

faas.time

string PII: Maybe OTel: True

A string containing the function invocation time in the ISO 8601 format expressed in UTC.

Example 2020-01-23T13:47:06Z
Raw JSON
{
  "key": "faas.time",
  "brief": "A string containing the function invocation time in the ISO 8601 format expressed in UTC.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "2020-01-23T13:47:06Z"
}

faas.trigger

string PII: Maybe OTel: True

Type of the trigger which caused this function invocation.

Example timer
Raw JSON
{
  "key": "faas.trigger",
  "brief": "Type of the trigger which caused this function invocation.",
  "type": "string",
  "pii": {
    "key": "maybe"
  },
  "is_in_otel": true,
  "example": "timer"
}