ui: Dashboard/TaskSummary: add Verifies to the Summary
and count every type that starts with 'verify' (e.g. verifyjob) Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
9608ac3486
commit
4acd7229d3
|
@ -136,6 +136,7 @@ Ext.define('PBS.Dashboard', {
|
||||||
updateTasks: function(store, records, success) {
|
updateTasks: function(store, records, success) {
|
||||||
if (!success) return;
|
if (!success) return;
|
||||||
let me = this;
|
let me = this;
|
||||||
|
let viewModel = me.getViewModel();
|
||||||
|
|
||||||
records.sort((a, b) => a.data.duration - b.data.duration);
|
records.sort((a, b) => a.data.duration - b.data.duration);
|
||||||
let top10 = records.slice(-10);
|
let top10 = records.slice(-10);
|
||||||
|
@ -146,6 +147,7 @@ Ext.define('PBS.Dashboard', {
|
||||||
prune: { error: 0, warning: 0, ok: 0 },
|
prune: { error: 0, warning: 0, ok: 0 },
|
||||||
garbage_collection: { error: 0, warning: 0, ok: 0 },
|
garbage_collection: { error: 0, warning: 0, ok: 0 },
|
||||||
sync: { error: 0, warning: 0, ok: 0 },
|
sync: { error: 0, warning: 0, ok: 0 },
|
||||||
|
verify: { error: 0, warning: 0, ok: 0 },
|
||||||
};
|
};
|
||||||
|
|
||||||
records.forEach(record => {
|
records.forEach(record => {
|
||||||
|
@ -154,6 +156,10 @@ Ext.define('PBS.Dashboard', {
|
||||||
type = 'sync';
|
type = 'sync';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (type.startsWith('verify')) {
|
||||||
|
type = 'verify';
|
||||||
|
}
|
||||||
|
|
||||||
if (data[type] && record.data.status) {
|
if (data[type] && record.data.status) {
|
||||||
let parsed = Proxmox.Utils.parse_task_status(record.data.status);
|
let parsed = Proxmox.Utils.parse_task_status(record.data.status);
|
||||||
data[type][parsed]++;
|
data[type][parsed]++;
|
||||||
|
|
|
@ -12,6 +12,7 @@ Ext.define('PBS.TaskSummary', {
|
||||||
"prune",
|
"prune",
|
||||||
"garbage_collection",
|
"garbage_collection",
|
||||||
"sync",
|
"sync",
|
||||||
|
"verify",
|
||||||
],
|
],
|
||||||
|
|
||||||
titles: {
|
titles: {
|
||||||
|
|
Loading…
Reference in New Issue