0
0
Azurecloud~10 mins

Azure dashboards - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new Azure dashboard with a specified name.

Azure
az portal dashboard create --name [1]
Drag options to blanks, or click blank then click option'
AtestDash
Bdefault
CMyDashboard
Ddashboard1
Attempts:
3 left
💡 Hint
Common Mistakes
Leaving the name blank
Using spaces in the dashboard name
Using reserved words like 'default'
2fill in blank
medium

Complete the code to list all Azure dashboards in your subscription.

Azure
az portal dashboard [1]
Drag options to blanks, or click blank then click option'
Acreate
Bdelete
Clist
Dshow
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'show' which displays only one dashboard
Using 'create' or 'delete' which modify dashboards
3fill in blank
hard

Fix the error in the command to delete an Azure dashboard named 'OldDash'.

Azure
az portal dashboard [1] --name OldDash
Drag options to blanks, or click blank then click option'
Adelete
Bremove
Cdestroy
Ddrop
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'remove' or 'destroy' which are not valid commands
Using 'drop' which is not recognized
4fill in blank
hard

Fill both blanks to export an Azure dashboard named 'ProdDash' to a JSON file.

Azure
az portal dashboard [1] --name [2] --output json > dashboard.json
Drag options to blanks, or click blank then click option'
Aexport
BProdDash
Cimport
DTestDash
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'import' instead of 'export'
Using wrong dashboard name
5fill in blank
hard

Fill all three blanks to update an Azure dashboard named 'DevDash' with a new JSON file.

Azure
az portal dashboard [1] --name [2] --input-path [3]
Drag options to blanks, or click blank then click option'
Aimport
BDevDash
Cdashboard_update.json
Dexport
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'export' instead of 'import'
Using wrong file name or path
Using wrong dashboard name