简体   繁体   English

找出在ADF v1中部署了Azure数据工厂管道的用户

[英]Find out the user who deployed Azure Data Factory pipeline in ADF v1

We are having a ADF V1 pipeline, which we had paused to avoid data flowing in. Suddenly, we see that it has been deployed in running mode, by some user. 我们正在使用ADF V1管道,我们已暂停该管道以避免数据流入。突然,我们看到某些用户已将其部署为运行模式。 How to find out who had deployed the azure data factory pipeline. 如何找出谁部署了Azure数据工厂管道。

When I see in the azure portal, I only see the deployment time. 当我在azure门户中看到时,我仅看到部署时间。 I don't see the user, who deployed it. 我没有看到部署它的用户。 I also tried to see the same using azure powershell also. 我也尝试使用天蓝色的powershell看到相同的内容。 But, not able to find. 但是,找不到。

Connect-AzureRmAccount

Select-AzureRmSubscription -SubscriptionName "TestSubscriptionName"

(Get-AzureRmDataFactoryPipeline -DataFactoryName "TestDataFactory"       
-ResourceGroupName "TestRG" -Name "TestPipeline").Properties.RuntimeInfo  

Please let me know, how can I find out the user, who had deployed it. 请让我知道,我如何找出部署它的用户。

The activity log contains all write operations (PUT, POST, DELETE) performed on your resources. 活动日志包含对资源执行的所有写操作(PUT,POST,DELETE)。 It does not include read operations (GET). 它不包括读取操作(GET)。

Through activity logs, you can determine: 通过活动日志,您可以确定:

  • what operations were taken on the resources in your subscription 您的订阅中对资源进行了哪些操作
  • who initiated the operation (although operations initiated by a backend service do not return a user as the caller) 发起操作的用户(尽管后端服务发起的操作不会返回用户作为调用者)
  • when the operation occurred 当手术发生时
  • the status of the operation 操作状态
  • the values of other properties that might help you research the operation 可能有助于您研究操作的其他属性的值

You can also use the below PowerShell cmdlet to retrieve the log entries. 您还可以使用下面的PowerShell cmdlet检索日志条目。

Get-AzureRmLog -ResourceGroup ExampleGroup

For more details, refer to View activity logs to audit actions on resources . 有关更多详细信息,请参阅查看活动日志以审核对资源的操作

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM