This is a question I often get asked by customers - "Can I have a report of my integrations, listing their dependencies?"
e.g. Integration 1 invokes ATP and then another integration via local invoke.
Simple with the OIC APIs - let's start with a simple integration flow -
But let's use the 2nd api - the key is the id found here -
So, with this id, I invoke the 2nd api - Retrieve Integration -
/ic/api/integration/v1/integrations/AA_EF_ASYNC2|01.00.0000?integrationInstance=myOICInstance
Here we get more detail - note the connections structure - this lists the 2 connections explicitly used in the integration, namely the REST Trigger and the ATP invoke. But what about the local invoke? EF_ASYNC2 invokes EF_ASYNC3.
This info is in the endpoints section -
Here I see -
In OIC, COLLOCATED always refers to Local Invoke. Note the name attribute - I set this in the integration to LocalAsync3 - I edit the integration AA_EF_ASYNC2 and change the name to that of the integration being invoked -
Adhering to such a simple naming convention for local invokes allows me to plot the dependencies using the OIC factory apis.
My integration simply logs this data, naturally, I could, also write this to a file.
No comments:
Post a Comment