Created
March 15, 2023 15:48
-
-
Save joanteixi/cab933193387f4acf90fed9080f665a3 to your computer and use it in GitHub Desktop.
KQL get rows copied in datafactory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ADFActivityRun | |
| where ActivityType == 'Copy' | |
| where Status == 'Succeeded' | |
| where EffectiveIntegrationRuntime == 'IRAzureVM' | |
| extend d = parse_json(Output) | |
| project TimeGenerated, CorrelationId, d.rowsCopied, ActivityRunId, PipelineRunId, PipelineName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment