Hi everyone,
I’m working with a distributed Ignition setup where:
Edge Gateway collects data from PLCs and triggers tag events
Standard Gateway handles logic like API calls and external integrations
The Edge Gateway is connected as a remote tag provider to the Standard Gateway
Goal:
When a tag (e.g., alarm or dataset) changes on the Edge Gateway, I want to:
Detect that event (e.g., in a valueChanged script)
Trigger a Python function defined on the Standard Gateway (not Edge)
Keep all external logic centralized in the Standard Gateway
Questions:
1.Is it possible to trigger a script on the Standard Gateway from a tag event on Edge?
2.Is system.util.sendMessage() from Edge to Standard the correct/recommended approach?
3.Can this scale well if multiple Edge gateways are sending data to one Standard?
Any guidance or patterns appreciated. Thanks in advance!