This Collector Plugin provides options to connect and subscribe to tags configured in a OPC UA Server.
Example 1 - Multiple Topics in One Subscription
Example 2 - Multiple Subscriptions
Introduction
The Collector config provides a front end editor for the OPC UA Collector. By default, this is found at localhost:4521
or the appropriate port number if you have multiple Collectors.
Select the Config
tab.
This quick 5 minute video will cover the basics of setting up your OPC UA logging session.
Modifying data from within the config tool will effect multiple config files, all located within C:\Program Data\Flow Software\Timebase\Collector\Config
for Windows, or /config
for Docker.
Changing the Data Source Type or Targeted Historian will write to collector.config
, adding or modifying the Target Historians will write to historians.config
, and using the Settings window and editing the JSON object to define how to connect to an OPCUA Server, to subscribe to tags, and to interpret the messages received from those subscriptions will modify the settings.config
file.
Multiple Topics in One Subscription
Tags are added to an OPC UA logging session via a subscription. A single subscription should be less than 10,000 tags, and multiple subscriptions are allowed. Each subscription is built based on a defined tag pattern, rather than hand-selecting individual tags.
These patters are called Topics
and can be a single pattern or an array of patterns to match the tags in the OPC UA Server. Any tags matching the topic structure will be added automatically.
In this example, all tags prefixed with either Timebase Load Test.PLC 01.000000
or Timebase Load Test.PLC 01.100000
will be added to the subscription:
{
"Settings": {
"Url": "opc.tcp://<OPCUAHostOrIPAddress>:<OPCUAServerPort>",
"Subscriptions": [
{
"Interval": 100,
"Topics": [
"Timebase Load Test.PLC 01.000000.#",
"Timebase Load Test.PLC 01.100000.#"
]
}
]
}
}
Multiple Subscriptions
One can add multiple subscriptions with multiple Topics
and Intervals
The config below will create 2 subscriptions to the OPC UA Server with an interval of 100ms and 1000ms each. Each subscription has 2 different topic patterns defined to match tags on to add to the subscriptions.
"Settings":
{
"Url": "opc.tcp://<OPCUAHostOrIPAddress>:<OPCUAServerPort>",
"Subscriptions": [
{
"Interval": 100,
"Topics": [
"Timebase Load Test.PLC 01.000000.#",
"Timebase Load Test.PLC 01.100000.#"
]
},
{
"Interval": 1000,
"Topics": [
"Timebase Load Test.PLC 01.200000.#",
"Timebase Load Test.PLC 01.300000.#"
]
}
],
}
Settings & Security
The following settings can be set for the OPC UA plugin:
Connection
Url
string
required
The fully qualified url for the OPCUA server (e.g. opc.tcp://opcua.demo-this.com:58810)SessionTimeout int
Timeout of the OPCUA session (ms). Default value is 60000.KeepAlivePeriod
int
Interval between periodic signals sent to the OPCUA server to confirm it is reachable (ms). Default value is 10000.ReconnectPeriodMaximum
int
Maximum interval between periodic attempts to reconnect to the OPCUA server (ms). Reconnection attempts will start immediately, but then exponentially backoff until this maximum period is reached. Default value is 15000.BrowseInterval
int
*RC-1.1.0 feature
Refresh Interval for Browsing the OPCUA Server for new Nodes. Defines the frequency (in minutes) at which the OPC UA server's namespace is browsed for new nodes. A lower value results in more frequent checks and faster updates, while a higher value reduces network traffic at the expense of update latency. The default is 30 minutes.
It may be helpful to watch this demonstration of how the security and authentication settings are configured as well as the error messages that you may experience while dialing in these settings.
Authentication
Username
string
The username required to authenticate with the OPC UA ServerPassword
string
The password required to authenticate with the OPC UA Server. If aUsername
is provided, then aPassword
must also be provided.
Security
SecurityPolicy
string
Defines the encryption and hashing algorithm used to secure OPC UA communications. Options includeNone
,Basic256
,Basic128Rsa15
,Basic256Sha256
,Aes128Sha256RsaOaep
, orAes256Sha256RsaPss
. Default value isNone
.SecurityMode
string
Defines how the security policy is applied to message exchanges. Options includeNone
,Sign
, orSignAndEncrypt
. Default value isNone
.
Certificate Management
ApplicationSubjectName
string
Used to uniquely identify the client application (CN=Common Name, O=Organization, OU=Department, C=Country, DC=Domain Component)ApplicationStorePath
string
Specifies the directory where an application's certificates and private keys are storedTrustedIssuerStorePath
string
Specifies the directory that stores certificates from trusted Certificate AuthoritiesTrustedPeerStorePath
string
Specifies the directory that contains certificates of other trusted OPC UA clients and serversRejectedStorePath
string
Specifies the directory where certificates are placed if they are not trusted or do not pass validation checksAutoAcceptUntrusted
bool
Allows automatic acceptance of untrusted certificates. Default value istrue
.
Subscriptions
Subscriptions
array ofSubscription
required
Subscriptions
Interval
Interval
int
This represents the cyclic rate at which the subscription executes and attempts to send a NotificationMessage to the client
Topic Definition* RC-1.1.0 feature
TopicDefinition
string
A dot-delimited string describing the semantic keys for each topic segment (e.g.namespace.channel.group1.group2.machine
). Topic segments beyond those defined here will be ignored.
These segments can be used to add dynamic fields to your tags based on the values of theses keys in your Topic structure. Looking at our example topic ofTimebase Load Test.PLC 01.100000
, namespace will resolve to "Timebase Load Tests", channel to "PLC 01" and group1 to "100000". These will be added as fields against the tag in the Historian dataset
Tagname Prefix* RC-1.1.0 feature
TagnamePrefix
string
A constant string to be prepended to the node name for uniqueness in this subscription. If left empty, the node name is used as is. This is useful if multiple identical pieces of equipment need to write data to a dataset. A tag prefix would then ensure uniqueness in tag names when created.
Topics
Configure your subscriptions to have less than 10,000 tags per subscription. Multiple subscriptions are allowed.
Topics
array ofstring
Topics are case-sensitive and composed of one or more levels, separated by a dot ("."). "+" represents a single-level wildcard (e.g. "rooms.+.temperature"). ."#" represents a multi-level wildcard that can only be used as the last character in the topic, preceded by a dot (e.g. "rooms.#").Filter
string
A tag filter is case-sensitive regex string applied to the resultant tagnames (e.g. "Line 1|.*RPM$" will exclude any tagname that contains "Line 1" or ends with "RPM". The regex string can be used to specify multiple filters where required.
If using an escape character \
in your regex, you must use a double escape \\
since the regex is contained within a JSON object.
Fields* RC-1.1.0 feature
Fields are static metadata key/value pairs applied to all tags in this subscription. It will add the static values automatically as fields to tags in the dataset. Fields are useful to classify group and filter tags based on static metadata properties like an area, machine or site code associated to the tag.
Values in the key/value pair can also reference segments in your topic structure as defined by the topic definition property.
Fields
key/value pair
JSON object describing the static fields to be created against tags subscribed to based on your topics in the subscription. i.e:
"Fields": {
"Site": "Southlake",
"Site Code": "SL",
"Area": "Filling",
"Group": "[Topic:group1]"
}
Note the syntax to reference field values based on the topic definition. The field "Group" will reference the value in the Topic reference by the "group1" semantic key.
As per our topic example Timebase Load Test.PLC 01.100000
and topic definition of namespace.channel.group1.group2.machine
group1 will resolve to "100000"