Azure Integration Account Usage

Mukesh Thakor 20 Reputation points
2024-09-13T15:37:21.96+00:00

Hi

We have an Integration Account in our subscription that costs $999 per month. With multiple acquisitions and resource migrations, we’re uncertain if this Integration Account is being used by any Logic Apps.

I’ve checked the Activity Logs for the past 90 days and didn’t see any activity. I also explored various options in the menu but couldn't find a way to track which Logic Apps are connected to this Integration Account.

Could you help us determine how to track its usage and linkage with Logic Apps?

Given that we have many subscriptions and Logic Apps, manually checking each Logic App might be impractical. If there’s no other option, please guide us through the process for checking the linkage from the Logic App side too.

Thanks for your assistance.

Mukesh

Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,113 questions
0 comments No comments
{count} votes

Accepted answer
  1. hossein jalilian 6,830 Reputation points
    2024-09-13T22:40:31.6933333+00:00

    Hi Mukesh Thakor,

    Thanks for posting your question in the Microsoft Q&A forum.

    You can try the following approaches:

    • Review the Integration Account's "Overview" page in the Azure portal. This may show recent activity or linked resources, examine the "Artifacts" section of the Integration Account. If there are schemas, maps, or agreements defined, it suggests the account is being used
    • Use Azure Resource Graph Explorer to query for Logic Apps linked to the Integration Account:
        Resources
      

    | where type == "microsoft.logic/workflows" | where properties.integrationAccount.id contains "<integration-account-resource-id>"

      
    - Run an Azure CLI command to list linked Logic Apps:
    
      ```bash
      az logic workflow list --query "[?properties.integrationAccount.id=='<integration-account-resource-id>']"
      
    

    Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.