Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions packages/server/api/src/app/benchmark/providers/azure/azure.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
{
"provider": "azure",
"steps": [
Comment thread
ravikiranvm marked this conversation as resolved.
{
"id": "connection",
"title": "Choose the Azure connection you want to use",
"description": "OpenOps can pull data from Azure using the connection you select here.",
"selectionType": "single",
"optionsSource": { "type": "dynamic", "method": "listConnections" },
"nextStep": "subscriptions"
},
{
"id": "subscriptions",
"title": "Which subscriptions should we include in the report?",
"selectionType": "multi-select",
"optionsSource": {
"type": "dynamic",
"method": "getSubscriptionsList"
Comment thread
ravikiranvm marked this conversation as resolved.
},
"selectAll": true,
"nextStep": "regions"
},
{
"id": "regions",
"title": "Which regions should we include in the report?",
"selectionType": "multi-select",
"optionsSource": { "type": "dynamic", "method": "getRegionsList" },
Comment thread
ravikiranvm marked this conversation as resolved.
"nextStep": "workflows"
},
{
"id": "workflows",
"title": "Which Azure workflows should we run to analyze the data?",
"selectionType": "multi-select",
"selectAll": true,
"optionsSource": {
"type": "static",
"values": [
{
"id": "Azure Benchmark - Elastic Pool Storage",
"displayName": "Elastic Pool Storage",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Elastic Pools",
"displayName": "Elastic Pools",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Idle VMs",
"displayName": "Idle VMs",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Rightsizing ASE",
"displayName": "Rightsizing ASE",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Rightsizing App Service Plans",
"displayName": "Rightsizing App Service Plans",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Rightsizing VMs",
"displayName": "Rightsizing VMs",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Single Databases",
"displayName": "Single Databases",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Unattached Managed Disks",
"displayName": "Unattached Managed Disks",
"imageLogoUrl": "/blocks/workflow.svg"
},
{
"id": "Azure Benchmark - Unused App Services Plans",
"displayName": "Unused App Services Plans",
"imageLogoUrl": "/blocks/workflow.svg"
}
]
}
Comment thread
ravikiranvm marked this conversation as resolved.
}
]
}
Loading