Akshay Bheda
Akshay Bheda

Reputation: 783

How to Monitor AzureDataFactory pipelines through .net code

I have multiple pipelines in adf. How to monitor them using Program, to get the status of all the pipelines. The difficulty I am facing, I am not sure where to find the applicationID and authenticationKey for that DataFactory.

Upvotes: 0

Views: 364

Answers (1)

Jai
Jai

Reputation: 466

You will have to generate the application ID and application key by creating a new application in Azure active directory. Once created then you have to assign the role to that app. you can go through following link to get generate the application id and application key: Create azure active directory application

For monitoring, there are various ways to monitor the pipeline by using the the powershell script, .NET SDK or Azure portal. Please check the following link to monitor pipeline using .NET SDK:Monitor and manage ADF v1

Hope this helps, Jai

Upvotes: 1

Related Questions