Query for getting logs for Azure Machine Learning pipeline runs

Copper Contributor
What's the KQL query for getting the logs for an AML Pipeline run?
 
I could only find a sample query for ADF pipelines as follows:

 

// Pipeline runs latest Status
// Returns latest Status of pipeline runs.
ADFPipelineRun
| summarize argmax(TimeGenerated, * ) by RunId, Status, _ResourceId

 

1 Reply

@MoOloomi  

 

Once you configure the logs to be registered in a log analytics workspace, if you click "Logs" option on the workspace you may see the table listed among the existing tables in the workspace.

 

You can try also the Kusto Explorer, but I haven't checked if it connects to Log Analytics:

https://docs.microsoft.com/en-us/azure/data-explorer/kusto/tools/kusto-explorer 

Kind Regards,

Dennes