Skip to content
Stand with Ukraine flag

Push to Cloud

Use this node on an Edge instance to selectively push data up to the cloud — for example, forwarding critical telemetry values or alarm events while keeping routine sensor readings local, or synchronising attribute updates to the cloud only after local validation.

  • Attributes scope — required. Default attribute scope used for attribute-related messages (SERVER_SCOPE, CLIENT_SCOPE, or SHARED_SCOPE). Can be overridden per message by including a scope key in the message metadata.
Message typeDescription
POST_TELEMETRY_REQUESTTime-series data
TIMESERIES_UPDATEDTime-series update
POST_ATTRIBUTES_REQUESTAttribute post
ATTRIBUTES_UPDATEDAttribute update
ATTRIBUTES_DELETEDAttribute deletion
  1. Verify that the message type is supported. If not, route via Failure.
  2. Convert the message into a cloud event based on the message type.
  3. Write the cloud event to persistent storage (local cloud queue).
  4. Route via Success.
ConnectionCondition
SuccessCloud event written to persistent storage. Outgoing message is unchanged.
FailureUnsupported message type or unexpected error.

Originator: DEVICE | Type: POST_TELEMETRY_REQUEST.

{
"temperature": 22.5,
"humidity": 65.3
}
{
"scope": "SERVER_SCOPE"
}

Result: cloud event queued; edge synchronisation service will deliver it to the cloud. Routes via Success.

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TbMsgPushToCloudNodeConfiguration",
"type": "object",
"required": ["scope"],
"additionalProperties": false,
"properties": {
"scope": {
"type": "string",
"enum": ["SERVER_SCOPE", "CLIENT_SCOPE", "SHARED_SCOPE"],
"description": "Default attribute scope for attribute-related messages."
}
}
}