跳转到内容

UNS Concepts in Tier0

适用版本EdgeCloudEnterprise

此内容尚不支持你的语言。

Data collected to Tier0 UNS is categorized into 3 types: Metric, State, and Action. Different types correspond to different storage methods.

Topic type Carries Example
METRIC Real-time data Machine temperature/pressure/voltage
STATE Status data Machine operational status
ACTION Commands or events Start batch, stop machine
flowchart TD
  plant["Plant/"] --> line1["Line1/"]
  line1 --> metric["Metric/"]
  line1 --> state["State/"]
  line1 --> action["Action/"]
  metric --> temp(["Temperature"])
  state --> status(["MachineStatus"])
  action --> start(["StartBatch"])
  class temp,status,start t0accent
Data Type Storage Description
Metric Time-series database Optimized for high-frequency measurements such as temperature and pressure. Each topic includes default fields: timestamp and quality.
State PostgreSQL (JSONB) Stores machine or system states in a flexible JSON format.
Action PostgreSQL (JSONB) Stores commands or actions in a flexible JSON format.