如何获取数据工厂日志记录信息? [英] How to get Data Factory logging information?

查看:27
本文介绍了如何获取数据工厂日志记录信息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Microsoft是否有任何文档.我需要完整的信息才能运行管道,即

Does Microsoft has any documentation. I need complete information to a run pipeline, i.e

开始时间,结束时间,管道作业ID,插入,删除,更新,错误等记录的数量

Start time, end time, pipeline job id, no of record inserted, deleted, update, error, etc

推荐答案

ADF当前未写入Azure活动日志,这意味着您无法使用Azure Monitor访问详细信息.

ADF doesn't currently write to the Azure Activity Logs, meaning you can't access details using the Azure Monitor.

目前,我发现获得此信息的最佳方法是使用PowerShell.例如:

Currently the best way I find to get this information is using PowerShell. For example:

Get-AzureRmDataFactoryActivityWindow `
    -DataFactoryName $ADFName.DataFactoryName `
    -ResourceGroupName $ResourceGroup `
    | ? {$_.WindowStart -ge $Now} `
    | SELECT ActivityName, ActivityType, WindowState, RunStart, InputDatasets, OutputDatasets `
    | Sort-Object ActivityName

更多信息在这里:希望这会有所帮助

这篇关于如何获取数据工厂日志记录信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆