mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-03-16 06:50:18 +03:00
16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
|
Ext.define('PBS.Schema', {
|
||
|
|
||
|
singleton: true,
|
||
|
|
||
|
metricServer: {
|
||
|
'influxdb-http': {
|
||
|
type: 'InfluxDB (HTTP)',
|
||
|
xtype: 'InfluxDbHttp',
|
||
|
},
|
||
|
'influxdb-udp': {
|
||
|
type: 'InfluxDB (UDP)',
|
||
|
xtype: 'InfluxDbUdp',
|
||
|
},
|
||
|
},
|
||
|
});
|