我想创建自己的日志文件,以在每次执行管道时存储各种属性。如何在我的管道中添加一个步骤来记录管道GUID,启动进程的时间戳,完成时间戳,完成状态,成功记录计数,错误记录计数等?
我想我需要一个用于不同状态的输出,但是我不确定为捕获不同元素的代码实际指定什么。
答案 0 :(得分:1)
您将要使用PowerShell cmdlet Get-AzureRmDataFactoryV2ActivityRun,并将输出定向到所需的日志记录机制。
示例输出:
ResourceGroupName : ADF DataFactoryName : WikiADF ActivityName : MyWebActivity PipelineRunId : f288712d-fb08-4cb8-96ef-82d3b9b30621 PipelineName : DPWikisample Input : {method, url, headers, body...} Output : {operationstatus} LinkedServiceName : ActivityRunStart : 9/14/2017 12:20:57 AM ActivityRunEnd : 9/14/2017 12:21:00 AM DurationInMs : 2768 Status : Succeeded Error : {errorCode, message, failureType, target}
对于ADFv1,适用的cmdlet为:Get-AzureRmDataFactoryRun
答案 1 :(得分:0)
我想出了如何通过在管道中设置变量来做我现在需要做的事情,因为我没有从前一个用户那里得到任何其他反馈