www/DataStoreStatistic.js: add transfer rate
This commit is contained in:
parent
25c550bc28
commit
4bf26be3bb
@ -64,23 +64,30 @@ Ext.define('PBS.DataStoreStatistic', {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxRRDChart',
|
xtype: 'proxmoxRRDChart',
|
||||||
title: gettext('Storage usage'),
|
title: gettext('Storage usage (bytes)'),
|
||||||
fields: ['total','used'],
|
fields: ['total','used'],
|
||||||
fieldTitles: [gettext('Total'), gettext('Storage usage')],
|
fieldTitles: [gettext('Total'), gettext('Storage usage')],
|
||||||
store: rrdstore
|
store: rrdstore
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxRRDChart',
|
xtype: 'proxmoxRRDChart',
|
||||||
title: gettext('IOPS'),
|
title: gettext('Transfer Rate (bytes/second)'),
|
||||||
fields: ['read_ios','write_ios'],
|
fields: ['read_bytes','write_bytes'],
|
||||||
fieldTitles: [gettext('Read IOPS'), gettext('Write IOPS')],
|
fieldTitles: [gettext('Read'), gettext('Write')],
|
||||||
store: rrdstore
|
store: rrdstore
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxRRDChart',
|
xtype: 'proxmoxRRDChart',
|
||||||
title: gettext('Delay'),
|
title: gettext('Input/Output Operations per Second (IOPS)'),
|
||||||
|
fields: ['read_ios','write_ios'],
|
||||||
|
fieldTitles: [gettext('Read'), gettext('Write')],
|
||||||
|
store: rrdstore
|
||||||
|
},
|
||||||
|
{
|
||||||
|
xtype: 'proxmoxRRDChart',
|
||||||
|
title: gettext('Delay (ms)'),
|
||||||
fields: ['read_delay','write_delay'],
|
fields: ['read_delay','write_delay'],
|
||||||
fieldTitles: [gettext('Read delay'), gettext('Write delay')],
|
fieldTitles: [gettext('Read'), gettext('Write')],
|
||||||
store: rrdstore
|
store: rrdstore
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user