52774bbe64
* wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md
32 lines
781 B
TypeScript
32 lines
781 B
TypeScript
import define from '../define';
|
|
import driveChart from '../../../services/chart/drive';
|
|
import federationChart from '../../../services/chart/federation';
|
|
import fetchMeta from '../../../misc/fetch-meta';
|
|
|
|
export const meta = {
|
|
requireCredential: false,
|
|
|
|
desc: {
|
|
'en-US': 'Get the instance\'s statistics'
|
|
},
|
|
|
|
tags: ['meta'],
|
|
|
|
params: {
|
|
}
|
|
};
|
|
|
|
export default define(meta, async () => {
|
|
const instance = await fetchMeta();
|
|
|
|
const stats: any = instance.stats;
|
|
|
|
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];
|
|
|
|
return stats;
|
|
});
|