gui: move system stat RRDs to ServerStatus panel.
This commit is contained in:
parent
052aaeb5e9
commit
880fa939d1
@ -8,120 +8,13 @@ Ext.define('pbs-datastore-list', {
|
|||||||
idProperty: 'store'
|
idProperty: 'store'
|
||||||
});
|
});
|
||||||
|
|
||||||
Ext.define('pve-rrd-node', {
|
|
||||||
extend: 'Ext.data.Model',
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
name: 'cpu',
|
|
||||||
// percentage
|
|
||||||
convert: function(value) {
|
|
||||||
return value*100;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'iowait',
|
|
||||||
// percentage
|
|
||||||
convert: function(value) {
|
|
||||||
return value*100;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'netin',
|
|
||||||
'netout',
|
|
||||||
'memtotal',
|
|
||||||
'memused',
|
|
||||||
'swaptotal',
|
|
||||||
'swapused',
|
|
||||||
'roottotal',
|
|
||||||
'rootused',
|
|
||||||
'loadavg',
|
|
||||||
{ type: 'date', dateFormat: 'timestamp', name: 'time' }
|
|
||||||
]
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
Ext.define('PBS.DataStoreStatus', {
|
Ext.define('PBS.DataStoreStatus', {
|
||||||
extend: 'Ext.panel.Panel',
|
extend: 'Ext.panel.Panel',
|
||||||
alias: 'widget.pbsDataStoreStatus',
|
alias: 'widget.pbsDataStoreStatus',
|
||||||
|
|
||||||
title: gettext('Data Store Status'),
|
title: gettext('Data Store Status'),
|
||||||
tbar: ['->', { xtype: 'proxmoxRRDTypeSelector' } ],
|
|
||||||
|
|
||||||
scrollable: true,
|
scrollable: true,
|
||||||
|
|
||||||
initComponent: function() {
|
html: "fixme: Add Datastore status",
|
||||||
var me = this;
|
|
||||||
|
|
||||||
// this is just a test for the RRD api
|
|
||||||
|
|
||||||
var rrdstore = Ext.create('Proxmox.data.RRDStore', {
|
|
||||||
rrdurl: "/api2/json/nodes/localhost/rrd",
|
|
||||||
model: 'pve-rrd-node'
|
|
||||||
});
|
|
||||||
|
|
||||||
me.items = {
|
|
||||||
xtype: 'container',
|
|
||||||
itemId: 'itemcontainer',
|
|
||||||
layout: 'column',
|
|
||||||
minWidth: 700,
|
|
||||||
defaults: {
|
|
||||||
minHeight: 320,
|
|
||||||
padding: 5,
|
|
||||||
columnWidth: 1
|
|
||||||
},
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
xtype: 'proxmoxRRDChart',
|
|
||||||
title: gettext('CPU usage'),
|
|
||||||
fields: ['cpu','iowait'],
|
|
||||||
fieldTitles: [gettext('CPU usage'), gettext('IO delay')],
|
|
||||||
store: rrdstore
|
|
||||||
},
|
|
||||||
{
|
|
||||||
xtype: 'proxmoxRRDChart',
|
|
||||||
title: gettext('Server load'),
|
|
||||||
fields: ['loadavg'],
|
|
||||||
fieldTitles: [gettext('Load average')],
|
|
||||||
store: rrdstore
|
|
||||||
},
|
|
||||||
{
|
|
||||||
xtype: 'proxmoxRRDChart',
|
|
||||||
title: gettext('Memory usage'),
|
|
||||||
fields: ['memtotal','memused'],
|
|
||||||
fieldTitles: [gettext('Total'), gettext('RAM usage')],
|
|
||||||
store: rrdstore
|
|
||||||
},
|
|
||||||
{
|
|
||||||
xtype: 'proxmoxRRDChart',
|
|
||||||
title: gettext('Swap usage'),
|
|
||||||
fields: ['swaptotal','swapused'],
|
|
||||||
fieldTitles: [gettext('Total'), gettext('Swap usage')],
|
|
||||||
store: rrdstore
|
|
||||||
},
|
|
||||||
{
|
|
||||||
xtype: 'proxmoxRRDChart',
|
|
||||||
title: gettext('Network traffic'),
|
|
||||||
fields: ['netin','netout'],
|
|
||||||
store: rrdstore
|
|
||||||
},
|
|
||||||
{
|
|
||||||
xtype: 'proxmoxRRDChart',
|
|
||||||
title: gettext('Root Disk usage'),
|
|
||||||
fields: ['roottotal','rootused'],
|
|
||||||
fieldTitles: [gettext('Total'), gettext('Disk usage')],
|
|
||||||
store: rrdstore
|
|
||||||
},
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
me.listeners = {
|
|
||||||
activate: function() {
|
|
||||||
rrdstore.startUpdate();
|
|
||||||
},
|
|
||||||
destroy: function() {
|
|
||||||
rrdstore.stopUpdate();
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
me.callParent();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
@ -1,10 +1,39 @@
|
|||||||
|
Ext.define('pve-rrd-node', {
|
||||||
|
extend: 'Ext.data.Model',
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: 'cpu',
|
||||||
|
// percentage
|
||||||
|
convert: function(value) {
|
||||||
|
return value*100;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'iowait',
|
||||||
|
// percentage
|
||||||
|
convert: function(value) {
|
||||||
|
return value*100;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
'netin',
|
||||||
|
'netout',
|
||||||
|
'memtotal',
|
||||||
|
'memused',
|
||||||
|
'swaptotal',
|
||||||
|
'swapused',
|
||||||
|
'roottotal',
|
||||||
|
'rootused',
|
||||||
|
'loadavg',
|
||||||
|
{ type: 'date', dateFormat: 'timestamp', name: 'time' }
|
||||||
|
]
|
||||||
|
});
|
||||||
Ext.define('PBS.ServerStatus', {
|
Ext.define('PBS.ServerStatus', {
|
||||||
extend: 'Ext.panel.Panel',
|
extend: 'Ext.panel.Panel',
|
||||||
alias: 'widget.pbsServerStatus',
|
alias: 'widget.pbsServerStatus',
|
||||||
|
|
||||||
title: gettext('ServerStatus'),
|
title: gettext('ServerStatus'),
|
||||||
|
|
||||||
html: "Add Something usefule here ?",
|
scrollable: true,
|
||||||
|
|
||||||
initComponent: function() {
|
initComponent: function() {
|
||||||
var me = this;
|
var me = this;
|
||||||
@ -41,7 +70,76 @@ Ext.define('PBS.ServerStatus', {
|
|||||||
iconCls: 'fa fa-power-off'
|
iconCls: 'fa fa-power-off'
|
||||||
});
|
});
|
||||||
|
|
||||||
me.tbar = [ restartBtn, shutdownBtn ];
|
me.tbar = [ restartBtn, shutdownBtn, '->', { xtype: 'proxmoxRRDTypeSelector' } ];
|
||||||
|
|
||||||
|
var rrdstore = Ext.create('Proxmox.data.RRDStore', {
|
||||||
|
rrdurl: "/api2/json/nodes/localhost/rrd",
|
||||||
|
model: 'pve-rrd-node'
|
||||||
|
});
|
||||||
|
|
||||||
|
me.items = {
|
||||||
|
xtype: 'container',
|
||||||
|
itemId: 'itemcontainer',
|
||||||
|
layout: 'column',
|
||||||
|
minWidth: 700,
|
||||||
|
defaults: {
|
||||||
|
minHeight: 320,
|
||||||
|
padding: 5,
|
||||||
|
columnWidth: 1
|
||||||
|
},
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('CPU usage'),
|
||||||
|
fields: ['cpu','iowait'],
|
||||||
|
fieldTitles: [gettext('CPU usage'), gettext('IO delay')],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('Server load'),
|
||||||
|
fields: ['loadavg'],
|
||||||
|
fieldTitles: [gettext('Load average')],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('Memory usage'),
|
||||||
|
fields: ['memtotal','memused'],
|
||||||
|
fieldTitles: [gettext('Total'), gettext('RAM usage')],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('Swap usage'),
|
||||||
|
fields: ['swaptotal','swapused'],
|
||||||
|
fieldTitles: [gettext('Total'), gettext('Swap usage')],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('Network traffic'),
|
||||||
|
fields: ['netin','netout'],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('Root Disk usage'),
|
||||||
|
fields: ['roottotal','rootused'],
|
||||||
|
fieldTitles: [gettext('Total'), gettext('Disk usage')],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
]
|
||||||
|
};
|
||||||
|
|
||||||
|
me.listeners = {
|
||||||
|
activate: function() {
|
||||||
|
rrdstore.startUpdate();
|
||||||
|
},
|
||||||
|
destroy: function() {
|
||||||
|
rrdstore.stopUpdate();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
me.callParent();
|
me.callParent();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user