forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI: Admin, account and project dashboard improvements (apache#7956)
This PR aims at improving the CloudStack dashboard and introduces the following: Admin dashboard: six cards that are responsive to screen sizes and show zone specific compute, storage and network allocation, as well as instance/hosts stats, alerts and events. Now, by default, the admin dashboard shows aggegate data from all zones, with option for admin to select individual zone to see individual zone stats Account/project dashboard: six cards that are responsive to screen sizes and show account or project specific resource lists/counts, and limits shown in three cards as (a) compute (with running stopped instances), (b) storage and (c) network allocation, an admin-defined links/docs card (via config.json) and events cards. Admin is allowed to configure project limits on project dashboards. A global create button on the top global header/user-menu to allow for quick actions such as to deploy a VM, CKS cluster and create a volume (more actions can be added as desired via code changes) etc. Doc PR - apache/cloudstack-documentation#349 --------- Signed-off-by: Rohit Yadav <[email protected]>
- Loading branch information
1 parent
82b9818
commit 5d9ae31
Showing
34 changed files
with
1,360 additions
and
1,015 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,6 +59,36 @@ | |
"jp": "label.japanese.keyboard", | ||
"sc": "label.simplified.chinese.keyboard" | ||
}, | ||
"userCard": { | ||
"title": "label.help", | ||
"icon": "question-circle-outlined", | ||
"links": [ | ||
{ | ||
"title": "Documentation", | ||
"text": "CloudStack documentation website", | ||
"link": "https://docs.cloudstack.apache.org/en/latest/", | ||
"icon": "read-outlined" | ||
}, | ||
{ | ||
"title": "API Documentation", | ||
"text": "Refer to API documentation", | ||
"link": "https://cloudstack.apache.org/api.html", | ||
"icon": "api-outlined" | ||
}, | ||
{ | ||
"title": "Email Support", | ||
"text": "Join CloudStack users mailing list to seek and provide support", | ||
"link": "mailto:[email protected]", | ||
"icon": "mail-outlined" | ||
}, | ||
{ | ||
"title": "Report Issue", | ||
"text": "Submit a bug or improvement request", | ||
"link": "https://github.com/apache/cloudstack/issues/new", | ||
"icon": "bug-outlined" | ||
} | ||
] | ||
}, | ||
"plugins": [], | ||
"basicZoneEnabled": true, | ||
"multipleServer": false, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.