You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 -
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.
The text was updated successfully, but these errors were encountered: