-
As the title says, I don't understand how I can trigger a workflow or a set of tasks from a specific event. From the Synapse architecture, I noticed that the Correlator entity performs event processing into CloudEvents. However, how do I link a specific source of events with this Correlator? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
Hi @oEscal! You are on the right track: (cloud)events need to be posted using the structured JSON format on a correlator's API, at |
Beta Was this translation helpful? Give feedback.
-
I am very sorry @cdavernas, but I continue to have multiple issues. First, is Synapse supposed to automatically create a correlation when I define a schedule based on events in a workflow? I have the following workflow (just for me to get things started in Synapse):
But no correlation is created (at least, I don't see any in the Web UI) Second, when I post a new event with this type in the correlator API endpoint we discussed, nothing happens. |
Beta Was this translation helpful? Give feedback.
-
Yes, it should create it. That's one of the operator's responsibilities, so make sure one is running when creating your flow and check its logs for potential errors. And yes, it should show up in the UI, else somethings not working as expected. |
Beta Was this translation helpful? Give feedback.
Hi @oEscal! You are on the right track: (cloud)events need to be posted using the structured JSON format on a correlator's API, at
/api/v1/events/pub
. This will trigger any matching correlation that exist, which you can view on the dashboard's dedicated interface.