Help connecting to OPC-UA server to read analog tag metadata

I am working on a project using Beckhoff as the PLC. Since there is not yet a native driver for Beckhoff in Ignition, I chose to add the OPC-UA server to the Beckhoff. There are two really nice features in the OPC-UA specification that Beckhoff chose to implement: structures and analog items.

See this post for how to work with structures:

This post I'm looking for help with analog items that include metadata like unit of measure, engineering min, and engineering max. When adding a tag from "browse devices" the tag shows the metadata nested below it, but those tags get separated from their parent tag on import. My hope was for this metadata to be a binding on the tag since there is already a engineering min and max parameter in Ignition, but I don't see how I could do that past one tag as the second tag's engineering min parameter will be a naming conflict with the first when imported separate from its parent tag.

image

This is the same for all OPC tags that come into Ignition, it's not just a Beckhoff implementation. The 'metadata' on the OPC server is just another tag to ignition.

You will want to use folders or UDTs and the multi-instance Wizard to make this process a little easier.

In this case, it's also just another Node in the OPC UA server. In the address space these are properties of a VariableNode that has an AnalogItemType (or subclass) type definition.

There is other metadata, like the Description attribute, that is not represented as an additional Node in the address space but rather an intrinsic part of every Node.

We don't automatically try to map any these to corresponding Ignition tag properties right now. There's not really a sane strategy, because ideally you would subscribe to them so if they changed you'd know about it, but many/most OPC UA servers, especially those embedded in PLCs, have relatively low limits on the number of subscriptions and monitored items.

Thanks for the clarification. I think I'll go to the feature requests and add my vote for a native Beckhoff driver which would have spared me getting confused by the inner details of OPC-UA.