Skip to content

Instantly share code, notes, and snippets.

@joanteixi
Created March 15, 2023 15:48
Show Gist options
  • Save joanteixi/cab933193387f4acf90fed9080f665a3 to your computer and use it in GitHub Desktop.
Save joanteixi/cab933193387f4acf90fed9080f665a3 to your computer and use it in GitHub Desktop.
KQL get rows copied in datafactory
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