Has anyone written a script (if this is even possible) to search through all UDT definitions to find a certain 'search string' within a tag's scripting features? The standard ctrl + F feature in Ignition does not seem to search these and I find myself needing to hunt through these scripts manually very often when troubleshooting production issues.
I am talking about in here specifically:
Use system.tag.getConfiguration
https://docs.inductiveautomation.com/display/DOC81/system.tag.getConfiguration
Example:
path = "[default]_types_/New Type"
# Run the system function and assign the value to a variable
tagDict = system.tag.getConfiguration(path, True)
# Print the results
print tagDict
You could then search for something specific.
Seems to work here. v8.1.25. That said, if it's something dynamically created, then the find tool will not help.
2 Likes