2018-11-01 22:47:44 -06:00
|
|
|
import define from '../define';
|
2019-02-07 12:31:33 -07:00
|
|
|
import driveChart from '../../../services/chart/drive';
|
|
|
|
import federationChart from '../../../services/chart/federation';
|
2018-11-05 15:14:43 -07:00
|
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
2017-08-12 00:17:03 -06:00
|
|
|
|
2018-11-01 22:47:44 -06:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'en-US': 'Get the instance\'s statistics'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
export default define(meta, async () => {
|
2018-11-05 15:14:43 -07:00
|
|
|
const instance = await fetchMeta();
|
2017-08-12 00:17:03 -06:00
|
|
|
|
2018-11-05 15:14:43 -07:00
|
|
|
const stats: any = instance.stats;
|
2018-11-02 20:37:44 -06: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];
|
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
return stats;
|
|
|
|
});
|