-
Notifications
You must be signed in to change notification settings - Fork 105
Description
Script has issues with Azure Machine Learning workloads.
Basically the csv export from Services Hub as categories such as
Cost Optimization - Azure Machine Learning
Reliability - Azure Machine Learning
...
This fails when creating the output csv used for reports due to line 245 in GenerateAssessmentReport.ps1 that is -
$data = $importdata #| where {$_.Category -in $filteredPillars}
The filteredPillars is checking for exact match on the WAF pillars which dont include ' - Azure Machine Learning', this then results in an empty CSV (before this line the csv had entries).
Other aspects of code have similar logic lately so report has sub headings with the correct scores but none of the additional pages and recommendations.
A workaround for anyone encountering the same issue is to open the original export csv from services hub and remove ' - Azure Machine Learning' from all the entries in Col 1. Just to generate the report.