2018-11-02 05:47:44 +01:00
|
|
|
import define from '../define';
|
2018-11-03 03:37:44 +01:00
|
|
|
import driveChart from '../../../chart/drive';
|
|
|
|
import federationChart from '../../../chart/federation';
|
2018-11-05 23:14:43 +01:00
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2017-08-12 08:17:03 +02:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'en-US': 'Get the instance\'s statistics'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, () => new Promise(async (res, rej) => {
|
2018-11-05 23:14:43 +01:00
|
|
|
const instance = await fetchMeta();
|
2017-08-12 08:17:03 +02:00
|
|
|
|
2018-11-05 23:14:43 +01:00
|
|
|
const stats: any = instance.stats;
|
2018-11-03 03:37:44 +01:00
|
|
|
|
|
|
|
const driveStats = await driveChart.getChart('hour', 1);
|
|
|
|
stats.driveUsageLocal = driveStats.local.totalSize[0];
|
|
|
|
stats.driveUsageRemote = driveStats.remote.totalSize[0];
|
|
|
|
|
|
|
|
const federationStats = await federationChart.getChart('hour', 1);
|
|
|
|
stats.instances = federationStats.instance.total[0];
|
|
|
|
|
|
|
|
res(stats);
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|