9169386eca
v2-ci / build (push) Failing after 39s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped
- New docs/Uns.md: the global UNS tree (Enterprise/Site read-only groupings, editable Area→Line→Equipment→Tag/VirtualTag), navigating/filter, the create/edit/delete modals, served-by cluster = UnsArea.ClusterId, tags are equipment-bound while Galaxy/SystemPlatform folder-path tags stay on the driver page, CSV import, and "changes apply on next Deploy". - README.md: index row under Operational. - CLAUDE.md: Testing section now points at /uns + docs/Uns.md.
99 lines
4.0 KiB
Markdown
99 lines
4.0 KiB
Markdown
# UNS — Global Unified-Namespace Management
|
|
|
|
The **UNS** page (`/uns` in the AdminUI) is the single surface for managing
|
|
the Unified Namespace across the whole fleet. It replaces the old
|
|
per-cluster **UNS**, **Equipment**, and **Tags** tabs and the standalone
|
|
virtual-tags list — those have been removed; everything now lives in one
|
|
global master tree.
|
|
|
|
## The tree
|
|
|
|
The page shows every layer of the UNS as one expandable tree:
|
|
|
|
```
|
|
Enterprise (read-only grouping — ServerCluster.Enterprise)
|
|
└─ Site / Cluster (read-only grouping — a ServerCluster row)
|
|
└─ Area (editable — UnsArea)
|
|
└─ Line (editable — UnsLine)
|
|
└─ Equipment (editable — Equipment)
|
|
├─ Tag (editable — equipment-bound Tag)
|
|
└─ Virtual tag (editable — VirtualTag)
|
|
```
|
|
|
|
**Enterprise and Site/Cluster are read-only here.** They are derived from
|
|
columns on the cluster record, not entities of their own, so you create and
|
|
configure clusters on the **Clusters** pages (`/clusters`). On a cluster row
|
|
the **⚙ settings** link jumps to that cluster. Editable UNS entities start
|
|
at **Area**.
|
|
|
|
Count badges next to a node show how many direct children it has (for
|
|
equipment, the combined tag + virtual-tag count).
|
|
|
|
### Navigating
|
|
|
|
- **Expand all / Collapse all** toggle the structural levels. Equipment
|
|
nodes are left collapsed by Expand-all because their tags/virtual-tags are
|
|
**lazy-loaded** — they fetch on first expand (you'll see a brief spinner).
|
|
- **Filter by name** does a case-insensitive substring match on the names of
|
|
a node's direct children.
|
|
|
|
## Creating and editing
|
|
|
|
Every editable row has inline actions; clicking one opens a modal:
|
|
|
|
| Node | Actions |
|
|
|---|---|
|
|
| Cluster | **+ Area** |
|
|
| Area | **+ Line**, Edit, Delete |
|
|
| Line | **+ Equipment**, Edit, Delete |
|
|
| Equipment | **+ Tag**, **+ Virtual tag**, Edit, Delete |
|
|
| Tag / Virtual tag | Edit, Delete |
|
|
|
|
A **+ Child** action pre-fills the parent for you (e.g. **+ Line** on an
|
|
area opens the Line modal with that area already selected). Build a branch
|
|
top-down: Area → Line → Equipment → Tag / Virtual tag.
|
|
|
|
### Served-by cluster
|
|
|
|
An area's **cluster assignment is its "served-by" cluster** — the cluster
|
|
node that runs it. It's set when you create the area (under a cluster) and
|
|
changed by editing the area's cluster in the Area modal, which moves the
|
|
whole branch. There is no separate "served-by" concept and no migration —
|
|
it is simply `UnsArea.ClusterId`.
|
|
|
|
### Tags vs. Galaxy / SystemPlatform tags
|
|
|
|
Tags created here are **equipment-bound** and require a driver instance.
|
|
The driver list in the Tag modal is scoped to the equipment's cluster and to
|
|
drivers on an **Equipment-kind** namespace, so a driver-less equipment shows
|
|
no eligible drivers until you bind one (edit the equipment and pick a driver).
|
|
|
|
**Galaxy / AVEVA System Platform tags are not shown in this tree.** They hang
|
|
off the driver's folder path and are auto-materialised from the Galaxy
|
|
browse rather than being equipment-bound, so they stay on the **Drivers** tab
|
|
of their cluster (`/clusters/{id}/drivers`), where the address picker browses
|
|
the live Galaxy hierarchy.
|
|
|
|
### Virtual tags
|
|
|
|
A virtual tag is bound to an equipment and driven by a **script** (no driver).
|
|
Pick its script in the Virtual tag modal; the data type is chosen from the
|
|
standard OPC UA type list.
|
|
|
|
## Bulk import
|
|
|
|
**Import equipment CSV** (toolbar) bulk-creates equipment across many lines
|
|
and clusters in one pass. After an import the whole tree reloads.
|
|
|
|
## Applying changes
|
|
|
|
Edits here change the configuration only. As the page header notes,
|
|
**changes apply on the next deployment** — run a **Deploy** (Deployments
|
|
page) to push them into the running address space.
|
|
|
|
## See also
|
|
|
|
- [Configuration.md](Configuration.md) — the underlying config entities.
|
|
- [VirtualTags.md](VirtualTags.md) — the scripting/virtual-tag engine.
|
|
- Design + decision log: [plans/2026-06-08-global-uns-management-design.md](plans/2026-06-08-global-uns-management-design.md).
|