TN AppSvr120 Accurate IO Count Using Dynamic IO Assignment
Last updated: March 9th, 2025Description
- Author: Brian Schneider
- Published: March 9th, 2025
Details:
Description
When using Wonderware System Platform/Application Server, it is not clear as to the number of IO you are using against your license.
This article shows how to accurately determine how much IO is really being used in a galaxy when dynamic attribute IO assignment is being used.
- Author: Brian Schneider
- Published: 03/27/2015
- Applies to: System Platform 2014 R2
Details
The built in license info does not reflect any IO that is assigned in runtime as shown below: We have configured 35 IO, not 4.
We will need to Historize the attribute ItemCnt for each topic defined in a DDE/SL Client as shown below: So in this case we will be logging 2 values to History Tagname.ItemCnt and TestTopic.ItemCnt
Once this is complete and the objects are re-deployed we can easily query the Wonderware Historian to produce the results as shown below:
This query (shown below) is used against the Live object, and could be modified to use History if you wanted to see IO over time.
Select sum(Value) as 'Total Active IO Count' from Live
where tagname like '%.ItemCnt%'